wpseek.com
A WordPress-centric search engine for devs and theme authors



{$context}_memory_limit › WordPress Filter Hooks

Since4.6.0
Deprecatedn/a
apply_filters( "{$context}_memory_limit", $filtered_limit )
Parameters:
  • () filtered_limit 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 integer (bytes), or a shorthand string notation, such as '256M'.
    Required: Yes
Defined at:
Codex:

Filters the memory limit allocated for an arbitrary context.

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.




Source

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