is_wpmu_sitewide_plugin()WP 1.0

Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. Use is_network_only_plugin() instead.

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

No Hooks.

Return

null. Nothing (null).

Usage

is_wpmu_sitewide_plugin( $file );
$file (required)
-

Notes

Changelog

Deprecated since 3.0.0 Use is_network_only_plugin()

is_wpmu_sitewide_plugin() code WP 6.8

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