WP HOOKS
akcjaod 6.4.0

deprecated_class_run

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

Opis — z kodu źródłowego

Fires when a deprecated class is called.

Parametry

ParametrTypOpis
$class_namestringThe name of the class being instantiated.
$replacementstringThe class or function that should have been called.
$versionstringThe version of WordPress that deprecated the class.

Wywołanie

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

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

Popularne w tej kategorii