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

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. View all references

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
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.