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