{$context}_memory_limit WordPress Filter Hook

The {$context}_memory_limit hook allows you to change the memory limit for a specific context. The possible contexts are 'admin', 'frontend', or 'both'. The default memory limit for WordPress is 64 MB.

apply_filters( "{$context}_memory_limit", int|string $filtered_limit ) #

Filters the memory limit allocated for arbitrary contexts.


Description

The dynamic portion of the hook name, $context, refers to an arbitrary context passed on calling the function. This allows for plugins to define their own contexts for raising the memory limit.


Top ↑

Parameters

$filtered_limit

(int|string)Maximum memory limit to allocate for images. Default '256M' or the original php.ini memory_limit, whichever is higher. 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.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