WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about activate_

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-admin/plugins.php do_action 194 /**
* Plugins administration panel.
*
* @package WordPress
* @subpackage Administration
*/
wp-admin/includes/plugin.php do_action 691 /**
* Fires as a specific plugin is being activated.
*
* This hook is the "activation" hook used internally by register_activation_hook().
* The dynamic portion of the hook name, `$plugin`, refers to the plugin basename.
*
* If a plugin is silently activated (such as during an update), this hook does not fire.
*
* @since 2.0.0
*
* @param bool $network_wide Whether to enable the plugin for all sites in the network
* or just the current site. Multisite only. Default false.
*/

Hook Parameters

Parameter Type Name Description
string $plugin Path to the plugin file relative to the plugins directory.
bool $network_wide Whether to enable the plugin for all sites in the network