admin_memory_limit WordPress Filter Hook

The admin_memory_limit hook is called when the memory limit for the admin area is reached. This hook allows you to either increase the memory limit or take action to reduce the amount of memory being used.

apply_filters( 'admin_memory_limit', int|string $filtered_limit ) #

Filters the maximum memory limit available for administration screens.


Description

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.


Top ↑

Parameters

$filtered_limit

(int|string)The maximum WordPress memory limit. Accepts an integer (bytes), or a shorthand string notation, such as '256M'.


Top ↑

Source

File: wp-includes/functions.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.6.0The default now takes the original memory_limit into account.
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More