WP HOOKS
akcjaod 3.0.0

deprecated_argument_run

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

Opis — z kodu źródłowego

Fires when a deprecated argument is called.

Parametry

ParametrTypOpis
$function_namestringThe function that was called.
$messagestringA message regarding the change.
$versionstringThe version of WordPress that deprecated the argument used.

Wywołanie

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

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

Popularne w tej kategorii