activate_plugin
Fires before a plugin is activated.
If a plugin is silently activated (such as during an update), this hook does not fire.
Использование
add_action( 'activate_plugin', 'wp_kama_activate_plugin_action', 10, 2 );
/**
* Function for `activate_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_activate_plugin_action( $plugin, $network_wide ){
// action...
}
- $plugin(строка)
- 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.
По умолчанию: false
Список изменений
| С версии 2.9.0 | Введена. |
Где вызывается хук
wp-admin/includes/plugin.php 688
do_action( 'activate_plugin', $plugin, $network_wide );