activate_sitewide_plugin()WP 1.0

Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. Use activate_plugin() instead.

Deprecated functionality for activating a network-only plugin.

No Hooks.

Returns

null. Nothing (null).

Usage

activate_sitewide_plugin();

Notes

Changelog

Deprecated since 3.0.0 Use activate_plugin()

activate_sitewide_plugin() code WP 7.0

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