WP HOOKS
akcjaod 3.1.0

doing_it_wrong_run

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

Opis — z kodu źródłowego

Fires when the given function is being used incorrectly.

Parametry

ParametrTypOpis
$function_namestringThe function that was called.
$messagestringA message explaining what has been done incorrectly.
$versionstringThe version of WordPress where the message was added.

Wywołanie

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

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

Popularne w tej kategorii