diff --git a/src/wp-includes/post-thumbnail-template.php b/src/wp-includes/post-thumbnail-template.php index 64c8494ca6..91201e7994 100644 --- a/src/wp-includes/post-thumbnail-template.php +++ b/src/wp-includes/post-thumbnail-template.php @@ -57,7 +57,7 @@ function update_post_thumbnail_cache( $wp_query = null ) { if ( ! $wp_query ) $wp_query = $GLOBALS['wp_query']; - if ( $wp_query->thumbnails_cached || ! $wp_query->posts ) + if ( $wp_query->thumbnails_cached ) return; $thumb_ids = array(); @@ -69,7 +69,7 @@ function update_post_thumbnail_cache( $wp_query = null ) { if ( ! empty ( $thumb_ids ) ) { _prime_post_caches( $thumb_ids, false, true ); } - + $wp_query->thumbnails_cached = true; } diff --git a/tests/phpunit/tests/post/thumbnails.php b/tests/phpunit/tests/post/thumbnails.php deleted file mode 100644 index 2584bbad2d..0000000000 --- a/tests/phpunit/tests/post/thumbnails.php +++ /dev/null @@ -1,30 +0,0 @@ -assertFalse( $GLOBALS['wp_query']->thumbnails_cached ); - - $this->factory->post->create_many( 3 ); - $GLOBALS['wp_query'] = new WP_Query( array( 'post_type' => 'post' ) ); - - update_post_thumbnail_cache(); - - $this->assertTrue( $GLOBALS['wp_query']->thumbnails_cached ); - - $q = new WP_Query(); - update_post_thumbnail_cache( $q ); - $this->assertFalse( $q->thumbnails_cached ); - - $p = new WP_Query( array( 'post_type' => 'post' ) ); - update_post_thumbnail_cache( $p ); - $this->assertTrue( $p->thumbnails_cached ); - } -}