WP HOOKS
filtrod 3.7.0

get_space_allowed

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

Opis — z kodu źródłowego

Filters the upload quota for the current site.

Parametry

ParametrTypOpis
$space_allowedintUpload quota in megabytes for the current blog.

Wywołanie

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

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