Make WordPress Core

Ticket #16894: 16894.3.diff

File 16894.3.diff, 1.0 KB (added by wonderboymusic, 9 years ago)
  • src/wp-includes/comment-template.php

     
    21162116                } else {
    21172117                        $_comments = $wp_query->comments;
    21182118                }
     2119
     2120                if ( ! $wp_query->comment_meta_cached ) {
     2121                        $comment_ids = wp_list_pluck( $_comments, 'comment_ID' );
     2122                        update_meta_cache( 'comment', $comment_ids );
     2123                        $wp_query->comment_meta_cached = true;
     2124                }
    21192125        }
    21202126
    21212127        if ( '' === $r['per_page'] && get_option('page_comments') )
  • src/wp-includes/query.php

     
    12931293         public $thumbnails_cached = false;
    12941294
    12951295        /**
     1296         * Set if comment meta has already been cached
     1297         *
     1298         * @since 4.4.0
     1299         * @access public
     1300         * @var bool
     1301         */
     1302         public $comment_meta_cached = false;
     1303
     1304        /**
    12961305         * Cached list of search stopwords.
    12971306         *
    12981307         * @since 3.7.0