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

$pluginstring
Path to the plugin file relative to the plugins directory.
$network_deactivatingbool
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

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

Changelog

VersionDescription
2.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.