deactivate_(plugin)
Fires as a specific plugin is being deactivated.
This hook is the "deactivation" hook used internally by register_deactivation_hook(). The dynamic portion of the hook name, $plugin, refers to the plugin basename.
If a plugin is silently deactivated (such as during an update), this hook does not fire.
Usage
add_action( 'deactivate_(plugin)', 'wp_kama_deactivate_plugin_action' ); /** * Function for `deactivate_(plugin)` action-hook. * * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network or just the current site. Multisite only. * * @return void */ function wp_kama_deactivate_plugin_action( $network_deactivating ){ // action... }
- $network_deactivating(true|false)
- Whether the plugin is deactivated for all sites in the network or just the current site. Multisite only.
Default: false
Changelog
Since 2.0.0 | Introduced. |
Where the hook is called
wp-admin/includes/plugin.php 826
do_action( "deactivate_{$plugin}", $network_deactivating );