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.
$network_deactivating
Sortie :
@param bool $network_deactivating Whether the plugin is deactivated for all sites in the network
// Ajouter une fonction au hook action 'deactivate_{$plugin}'
add_action('deactivate_{$plugin}', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($network_deactivating) {
// Votre code ici
error_log('Hook deactivate_{$plugin} déclenché');
}
Chargement des actualités...