Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: admin_memory_limit

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
7870                 * (256 megabytes of memory) or the original `memory_limit` php.ini value if
7871                 * this is higher.
7872                 *
7873                 * @since 3.0.0
7874                 * @since 4.6.0 The default now takes the original `memory_limit` into account.
7875                 *
7876                 * @param int|string $filtered_limit The maximum WordPress memory limit. Accepts an integer
7877                 *                                   (bytes), or a shorthand string notation, such as '256M'.
7878                 */
7879                $filtered_limit = apply_filters( 'admin_memory_limit', $filtered_limit );
7880                break;
7881
7882           case 'image':
7883                /**
7884                 * Filters the memory limit allocated for image manipulation.
7885                 *
7886                 * @since 3.5.0
7887                 * @since 4.6.0 The default now takes the original `memory_limit` into account.
7888                 *