load_image_to_edit хук-фильтрWP 2.9.0

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()
load_image_to_edit
wp-admin/includes/image.php 1137
$image = apply_filters( 'load_image_to_edit', $image, $attachment_id, $size );

Где используется хук в WordPress

Использование не найдено.