activate_sitewide_plugin()WP 1.0

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

Deprecated functionality for activating a network-only plugin.

No Hooks.

Return

null. Nothing (null).

Usage

activate_sitewide_plugin();

Notes

Changelog

Deprecated since 3.0.0 Use activate_plugin()

activate_sitewide_plugin() code WP 6.5.2

function activate_sitewide_plugin() {
	_deprecated_function( __FUNCTION__, '3.0.0', 'activate_plugin()' );
	return false;
}