activated_plugin
Fires after a plugin has been activated.
If a plugin is silently activated (such as during an update), this hook does not fire.
Usage
add_action( 'activated_plugin', 'wp_kama_activated_plugin_action', 10, 2 );
/**
* Function for `activated_plugin` action-hook.
*
* @param string $plugin Path to the plugin file relative to the plugins directory.
* @param bool $network_wide Whether to enable the plugin for all sites in the network or just the current site. Multisite only.
*
* @return void
*/
function wp_kama_activated_plugin_action( $plugin, $network_wide ){
// action...
}
- $plugin(string)
- Path to the plugin file relative to the plugins directory.
- $network_wide(true|false)
- Whether to enable the plugin for all sites in the network or just the current site. Multisite only.
Default: false
Changelog
| Since 2.9.0 | Introduced. |
Where the hook is called
wp-admin/includes/plugin.php 730
do_action( 'activated_plugin', $plugin, $network_wide );