wordpress / latest / hooks / deactivated_plugin.html

do_action( 'deactivated_plugin', string $plugin, bool $network_deactivating )

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.

More Information

This hook is run immediately after any plugin is deactivated, and may be used to detect the deactivation of other plugins.

Source

File: wp-admin/includes/plugin.php. View all references

do_action( 'deactivated_plugin', $plugin, $network_deactivating );

Used By

Used By Description

Changelog

Version Description
2.9.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/deactivated_plugin