WP Multisite Network
-
The plugin doesn’t work on WP Multisite Network enable.
I modified the Helpers to make this work on my website.
public static function isPluginActive($plugin)
{
if (MULTISITE) {
return in_array(WP_PLUGIN_DIR . ‘/’ . $plugin, wp_get_active_network_plugins());
} else {
return in_array($plugin, (array) get_option(‘active_plugins’, array()));
}
}Can you add this in the next version of plugin?
Thanks.
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘WP Multisite Network’ is closed to new replies.