Plugin options not loaded on Multisite
-
Currently the the settings are not loaded and the plugin continues to use the default settings. The code is using “get_site_option” rather than “get_option”.
\breadcrumb_navxt::get_settings:349
//Let's begin by grabbing the current settings for the site (works for both multisite and single installs) $this->breadcrumb_trail->opt = wp_parse_args(get_site_option('bcn_options'), $this->opt);Should be
//Let's begin by grabbing the current settings for the site (works for both multisite and single installs) $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Plugin options not loaded on Multisite’ is closed to new replies.