filtrod 5.2.0
wp_php_error_message
Opis — z kodu źródłowego
Filters the message that the default PHP error template displays.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$message | string | HTML error message to display. |
$error | array | Error information retrieved from <code>error_get_last()</code>. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_php_error_message', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_php_error_message', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii