On this page
update_post_thumbnail_cache( WP_Query $wp_query = null )
Updates cache for thumbnails in the current loop.
Parameters
Source
File: wp-includes/post-thumbnail-template.php. View all references
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;
}
Related
Uses
| Uses | Description |
|---|---|
| get_post_thumbnail_id() wp-includes/post-thumbnail-template.php | Retrieves the post thumbnail ID. |
| _prime_post_caches() wp-includes/post.php | Adds any posts from the given IDs to the cache that do not already exist in cache. |
Used By
| Used By | Description |
|---|---|
| WP_REST_Posts_Controller::get_items() wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php | Retrieves a collection of posts. |
| get_the_post_thumbnail() wp-includes/post-thumbnail-template.php | Retrieves the post thumbnail. |
Changelog
| Version | Description |
|---|---|
| 3.2.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/update_post_thumbnail_cache