WP HOOKS
akcjaod 2.5.0

deprecated_file_included

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

Opis — z kodu źródłowego

Fires when a deprecated file is called.

Parametry

ParametrTypOpis
$filestringThe file that was called.
$replacementstringThe file that should have been included based on ABSPATH.
$versionstringThe version of WordPress that deprecated the file.
$messagestringA message regarding the change.

Wywołanie

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

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

Popularne w tej kategorii