akcjadynamicznyod 2.0.0
deactivate_{$plugin}
Args 1Plik wp-admin/includes/plugin.php
Opis — z kodu źródłowego
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.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$network_deactivating | bool | Whether the plugin is deactivated for all sites in the network or just the current site. Multisite only. Default false. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_action( 'deactivate_{$plugin}', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_action( 'deactivate_{$plugin}', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii