akcjaod 2.5.0
deprecated_function_run
Opis — z kodu źródłowego
Fires when a deprecated function is called.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$function_name | string | The function that was called. |
$replacement | string | The function that should have been called. |
$version | string | The version of WordPress that deprecated the function. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'deprecated_function_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_function_run', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii