akcjaod 5.6.0
after_core_auto_updates_settings
Opis — z kodu źródłowego
Fires after the major core auto-update settings.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$auto_update_settings | array | { Array of core auto-update settings. @type bool $dev Whether to enable automatic updates for development versions. @type bool $minor Whether to enable minor automatic core updates. @type bool $major Whether to enable major automatic core updates. } |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_action( 'after_core_auto_updates_settings', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_action( 'after_core_auto_updates_settings', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii