WP HOOKS
akcjaod 4.6.0

deprecated_hook_run

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

Opis — z kodu źródłowego

Fires when a deprecated hook is called.

Parametry

ParametrTypOpis
$hookstringThe hook that was called.
$replacementstringThe hook that should be used as a replacement.
$versionstringThe version of WordPress that deprecated the argument used.
$messagestringA message regarding the change.

Wywołanie

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

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

Popularne w tej kategorii