WP HOOKS
akcjaod 4.3.0

deprecated_constructor_run

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

Opis — z kodu źródłowego

Fires when a deprecated constructor is called.

Parametry

ParametrTypOpis
$class_namestringThe class containing the deprecated constructor.
$versionstringThe version of WordPress that deprecated the function.
$parent_classstringThe parent class calling the deprecated constructor.

Wywołanie

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

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

Popularne w tej kategorii