filtrod 3.0.0
admin_memory_limit
Opis — z kodu źródłowego
Filters the maximum memory limit available for administration screens.
This only applies to administrators, who may require more memory for tasks like updates. Memory limits when processing images (uploaded or edited by users of any role) are handled separately.
The WP_MAX_MEMORY_LIMIT constant specifically defines the maximum memory limit available when in the administration back end. The default is 256M (256 megabytes of memory) or the original memory_limit php.ini value if this is higher.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$filtered_limit | int | string | The maximum WordPress memory limit. Accepts an integer (bytes), or a shorthand string notation, such as '256M'. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'admin_memory_limit', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'admin_memory_limit', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii