wpseek.com
WordPress开发者和主题制作者的搜索引擎



is_plugin_active_for_network › WordPress Function

Since3.0.0
已弃用n/a
is_plugin_active_for_network ( $plugin )
参数:
  • (string) $plugin Path to the plugin file relative to the plugins directory.
    Required: Yes
返回:
  • (bool) True if active for the network, otherwise false.
定义在:
文档:

Determines whether the plugin is active for the entire network.

Only plugins installed in the plugins/ folder can be active. Plugins in the mu-plugins/ folder can't be "activated," so this function will return false for those plugins. For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


源码

function is_plugin_active_for_network( $plugin ) {
	if ( ! is_multisite() ) {
		return false;
	}

	$plugins = get_site_option( 'active_sitewide_plugins' );
	if ( isset( $plugins[ $plugin ] ) ) {
		return true;
	}

	return false;
}