Filters the maximum image size dimensions for the editor.
Parameters
$max_image_size
int[]- An array of width and height values.
0
intThe maximum width in pixels.1
intThe maximum height in pixels.
$size
string|int[]- Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
$context
string- The context the image is being resized for.
Possible values are'display'
(like in a theme) or'edit'
(like inserting into an editor).
Source
list( $max_width, $max_height ) = apply_filters( 'editor_max_image_size', array( $max_width, $max_height ), $size, $context );
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.