akcjaod 4.3.0
deprecated_constructor_run
Opis — z kodu źródłowego
Fires when a deprecated constructor is called.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$class_name | string | The class containing the deprecated constructor. |
$version | string | The version of WordPress that deprecated the function. |
$parent_class | string | The parent class calling the deprecated constructor. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'deprecated_constructor_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_constructor_run', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii