Add $wp_query parameter to update_post_thumbnail_cache(). props scribu. see #19949, fixes that ticket for 3.4.
git-svn-id: https://develop.svn.wordpress.org/trunk@20646 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
3540b301af
commit
ddee4f351b
@ -50,9 +50,12 @@ function the_post_thumbnail( $size = 'post-thumbnail', $attr = '' ) {
|
||||
* Update cache for thumbnails in the current loop
|
||||
*
|
||||
* @since 3.2
|
||||
*
|
||||
* @param object $wp_query Optional. A WP_Query instance. Defaults to the $wp_query global.
|
||||
*/
|
||||
function update_post_thumbnail_cache() {
|
||||
global $wp_query;
|
||||
function update_post_thumbnail_cache( $wp_query = null ) {
|
||||
if ( ! $wp_query )
|
||||
$wp_query = $GLOBALS['wp_query'];
|
||||
|
||||
if ( $wp_query->thumbnails_cached )
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user