WP HOOKS
akcjaod 2.5.0

deprecated_function_run

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

Opis — z kodu źródłowego

Fires when a deprecated function is called.

Parametry

ParametrTypOpis
$function_namestringThe function that was called.
$replacementstringThe function that should have been called.
$versionstringThe version of WordPress that deprecated the function.

Wywołanie

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

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

Popularne w tej kategorii