Uses
Uses | Description |
---|---|
wp-includes/load.php: is_multisite() | If Multisite is enabled. |
wp-includes/option.php: get_site_option() | Retrieve an option value for the current network based on name of option. |
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 Conditional Tags article in the Theme Developer Handbook.
(string) (Required) Path to the plugin file relative to the plugins directory.
(bool) True if active for the network, otherwise false.
The file that defines this function (wp-admin/includes/plugin.php
) is only loaded in the admin sections. In order to use is_plugin_active_for_network
outside the admin pages, it’s necessary to include or require plugin.php
before trying to use it (as shown in the example).
File: wp-admin/includes/plugin.php
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; }
Version | Description |
---|---|
3.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/is_plugin_active_for_network