Warning: This function has been deprecated. Use is_network_only_plugin() instead.

is_wpmu_sitewide_plugin() WordPress Function

The is_wpmu_sitewide_plugin() function is used to determine whether a given plugin is active for all sites on a WordPress Multisite installation. This function is useful for plugins that need to be available on all sites in order to function properly.

is_wpmu_sitewide_plugin( $file ) #

Deprecated functionality for determining if the current plugin is network-only.


Description

Top ↑

See also


Top ↑

Source

File: wp-admin/includes/ms-deprecated.php

function is_wpmu_sitewide_plugin( $file ) {
	_deprecated_function( __FUNCTION__, '3.0.0', 'is_network_only_plugin()' );
	return is_network_only_plugin( $file );
}


Top ↑

Changelog

Changelog
VersionDescription
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.