load_image_to_edit
Filters the current image being loaded for editing.
Использование
add_filter( 'load_image_to_edit', 'wp_kama_load_image_to_edit_filter', 10, 3 );
/**
* Function for `load_image_to_edit` filter-hook.
*
* @param resource|GdImage $image Current image.
* @param int $attachment_id Attachment ID.
* @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).
*
* @return resource|GdImage
*/
function wp_kama_load_image_to_edit_filter( $image, $attachment_id, $size ){
// filter...
return $image;
}
- $image(resource|GdImage)
- Current image.
- $attachment_id(int)
- Attachment ID.
- $size(строка|int[])
- Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
Список изменений
| С версии 2.9.0 | Введена. |
Где вызывается хук
load_image_to_edit
wp-admin/includes/image.php 1171
$image = apply_filters( 'load_image_to_edit', $image, $attachment_id, $size );