load_image_to_edit filter-hook . WP 2.9.0
Filters the current image being loaded for editing.
Usage
add_filter( 'load_image_to_edit', 'filter_function_name_2491', 10, 3 ); function filter_function_name_2491( $image, $attachment_id, $size ){ // filter... return $image; }
- $image(resource/GdImage)
- Current image.
- $attachment_id(int)
- Attachment ID.
- $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).
Changelog
Since 2.9.0 | Introduced. |
Where the hook is called
load_image_to_edit
wp-admin/includes/image.php 959
$image = apply_filters( 'load_image_to_edit', $image, $attachment_id, $size );