WP HOOKS
filtrod 6.0.0

wp_filesize

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

Opis — z kodu źródłowego

Filters the size of the file.

Parametry

ParametrTypOpis
$sizeintThe result of PHP filesize on the file.
$pathstringPath to the file.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_filesize', 'twoja_funkcja', 10, 2 );

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

Popularne w tej kategorii