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