Fires after a plugin is deactivated.
Description
If a plugin is silently deactivated (such as during an update), this hook does not fire.
Parameters
$plugin
string- Path to the plugin file relative to the plugins directory.
$network_deactivating
bool- Whether the plugin is deactivated for all sites in the network or just the current site. Multisite only. Default false.
Source
do_action( 'deactivated_plugin', $plugin, $network_deactivating );
Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |
The action runs before the
active_plugins
option is updated.