editor_max_image_size filter-hookWP 2.5.0

Filters the maximum image size dimensions for the editor.

Usage

add_filter( 'editor_max_image_size', 'wp_kama_editor_max_image_size_filter', 10, 3 );

/**
 * Function for `editor_max_image_size` filter-hook.
 * 
 * @param int[]        $max_image_size An array of width and height values.
 * @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).
 *
 * @return int[]
 */
function wp_kama_editor_max_image_size_filter( $max_image_size, $size, $context ){

	// filter...
	return $max_image_size;
}
$max_image_size(int[])

An array of width and height values.

  • 0(int)
    The maximum width in pixels.

  • 1(int)
    The 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).

Changelog

Since 2.5.0 Introduced.

Where the hook is called

image_constrain_size_for_editor()
editor_max_image_size
wp-includes/media.php 133
list( $max_width, $max_height ) = apply_filters( 'editor_max_image_size', array( $max_width, $max_height ), $size, $context );

Where the hook is used in WordPress

Usage not found.