WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about editor_max_image_size

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/media.php apply_filters 133 /**
* Filters the maximum image size dimensions for the editor.
*
* @since 2.5.0
*
* @param int[] $max_image_size {
* An array of width and height values.
*
* @type int $0 The maximum width in pixels.
* @type int $1 The maximum height in pixels.
* }
* @param string|int[] $size Requested image size. Can be any registered image size name, or
* an array of width and height values in pixels (in that order).
* @param string $context The context the image is being resized for.
* Possible values are 'display' (like in a theme)
* or 'edit' (like inserting into an editor).
*/

Hook Parameters

Parameter Type Name Description
int[] $max_image_siz e {
string|int[] $size Requested image size. Can be any registered image size name, or
string $context The context the image is being resized for.