image_memory_limit WordPress Filter Hook

The image_memory_limit hook is used to control the maximum amount of memory that can be used when processing images. This can be useful when working with large images, or when processing a lot of images at once. By default, WordPress will use up to 256 MB of memory for image processing.

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

Filters the memory limit allocated for image manipulation.


Parameters

$filtered_limit

(int|string)Maximum memory limit to allocate for images. Default WP_MAX_MEMORY_LIMIT 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.0The default now takes the original memory_limit into account.
3.5.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