end_fetch_post_thumbnail_html action-hookWP 2.9.0

Fires after fetching the post thumbnail HTML.

Usage

add_action( 'end_fetch_post_thumbnail_html', 'wp_kama_end_fetch_post_thumbnail_html_action', 10, 3 );

/**
 * Function for `end_fetch_post_thumbnail_html` action-hook.
 * 
 * @param int          $post_id           The post ID.
 * @param int          $post_thumbnail_id The post thumbnail 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 void
 */
function wp_kama_end_fetch_post_thumbnail_html_action( $post_id, $post_thumbnail_id, $size ){

	// action...
}
$post_id(int)
The post ID.
$post_thumbnail_id(int)
The post thumbnail 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

get_the_post_thumbnail()
end_fetch_post_thumbnail_html
wp-includes/post-thumbnail-template.php 201
do_action( 'end_fetch_post_thumbnail_html', $post->ID, $post_thumbnail_id, $size );

Where the hook is used in WordPress

wp-includes/default-filters.php 446
add_action( 'end_fetch_post_thumbnail_html', '_wp_post_thumbnail_class_filter_remove' );
wp-includes/default-filters.php 448
add_action( 'end_fetch_post_thumbnail_html', '_wp_post_thumbnail_context_filter_remove' );