
WordPress代码生成器如何加快开发速度
update_post_thumbnail_cache ( $wp_query = null )
update_post_thumbnail_cache: 这个函数更新文章缩略图的缓存。它有一个参数:$post_id。$post_id是需要更新的文章缩略图缓存的ID。
在当前循环中更新缩略图的缓存。
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; }