apply_filters ( “{$context}_memory_limit”, int|string $filtered_limit )

Filters the memory limit allocated for an arbitrary context.

Description

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

Parameters

$filtered_limit int | string
Maximum memory limit to allocate for this context.
Default WP_MAX_MEMORY_LIMIT or the original php.ini memory_limit`, whichever is higher. Accepts an integuer (bytes), or a shorthand string notation, such as '256M' .

Source

$filtered_limit = apply_filters( "{$context}_memory_limit", $filtered_limit );

Changuelog

Versionen Description
4.6.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.