WP HOOKS
filtrod 5.2.0

wp_php_error_message

Args 2Plik wp-includes/class-wp-fatal-error-handler.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the message that the default PHP error template displays.

Parametry

ParametrTypOpis
$messagestringHTML error message to display.
$errorarrayError 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
}

Popularne w tej kategorii