Changeset 55749 for trunk/src/wp-includes/class-wp-query.php
- Timestamp:
- 05/11/2023 12:25:51 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r55703 r55749 2814 2814 wp_cache_add( $cache_key, $comment_ids, 'comment-queries' ); 2815 2815 } 2816 _prime_comment_caches( $comment_ids , false);2816 _prime_comment_caches( $comment_ids ); 2817 2817 2818 2818 // Convert to WP_Comment. … … 3373 3373 wp_cache_add( $comment_cache_key, $comment_ids, 'comment-queries' ); 3374 3374 } 3375 _prime_comment_caches( $comment_ids , false);3375 _prime_comment_caches( $comment_ids ); 3376 3376 3377 3377 // Convert to WP_Comment. … … 3488 3488 } 3489 3489 3490 // If comments have been fetched as part of the query, make sure comment meta lazy-loading is set up.3491 if ( ! empty( $this->comments ) ) {3492 wp_queue_comments_for_comment_meta_lazyload( $this->comments );3493 }3494 3495 3490 if ( ! $q['suppress_filters'] ) { 3496 3491 /**
Note: See TracChangeset
for help on using the changeset viewer.