akcjaod 4.6.0
deprecated_hook_run
Opis — z kodu źródłowego
Fires when a deprecated hook is called.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$hook | string | The hook that was called. |
$replacement | string | The hook that should be used as a replacement. |
$version | string | The version of WordPress that deprecated the argument used. |
$message | string | A message regarding the change. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'deprecated_hook_run', 'twoja_funkcja', 10, 4 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'deprecated_hook_run', 'twoja_funkcja', 10, 4 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
// Twój kod
}Popularne w tej kategorii