editor_max_image_size хук-фильтр . WP 2.5.0
Filters the maximum image size dimensions for the editor.
Использование
add_filter( 'editor_max_image_size', 'filter_function_name_4688', 10, 3 ); function filter_function_name_4688( $max_image_size, $size, $context ){ // filter... return $max_image_size; }
- $max_image_size(число[])
An array of width and height values.
-
0(число)
The maximum width in pixels. - 1(число)
The maximum height in pixels.
-
- $size(строка/число[])
- Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
- $context(строка)
- The context the image is being resized for. Possible values are 'display' (like in a theme) or 'edit' (like inserting into an editor).
Список изменений
С версии 2.5.0 | Введена. |
Где вызывается хук
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 );