WP HOOKS
filtrod 3.5.0

pre_get_space_used

Args 1Plik wp-includes/ms-functions.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the amount of storage space used by the current site, in megabytes.

Parametry

ParametrTypOpis
$space_usedint | falseThe amount of used space, in megabytes. Default false.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'pre_get_space_used', 'twoja_funkcja' );

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