WP HOOKS
akcjaod 6.4.0

wp_trigger_error_run

Args 3Plik wp-includes/functions.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Fires when the given function triggers a user-level error/warning/notice/deprecation message.

Can be used for debug backtracking.

Parametry

ParametrTypOpis
$function_namestringThe function that was called.
$messagestringA message explaining what has been done incorrectly.
$error_levelintThe designated error type for this error.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'wp_trigger_error_run', 'twoja_funkcja', 10, 3 );

function twoja_funkcja($param_1, $param_2, $param_3) {
	// Twój kod
}

Popularne w tej kategorii