update_post_thumbnail_cache()WP 3.2.0

Updates cache for thumbnails in the current loop.

No Hooks.

Return

null. Nothing (null).

Usage

update_post_thumbnail_cache( $wp_query );
$wp_query(WP_Query)
A WP_Query instance.
Default: $wp_query global

Notes

  • Global. WP_Query. $wp_query WordPress Query object.

Changelog

Since 3.2.0 Introduced.

update_post_thumbnail_cache() code WP 6.5.2

function update_post_thumbnail_cache( $wp_query = null ) {
	if ( ! $wp_query ) {
		$wp_query = $GLOBALS['wp_query'];
	}

	if ( $wp_query->thumbnails_cached ) {
		return;
	}

	$thumb_ids = array();

	foreach ( $wp_query->posts as $post ) {
		$id = get_post_thumbnail_id( $post->ID );
		if ( $id ) {
			$thumb_ids[] = $id;
		}
	}

	if ( ! empty( $thumb_ids ) ) {
		_prime_post_caches( $thumb_ids, false, true );
	}

	$wp_query->thumbnails_cached = true;
}