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