In get_page_of_comment()
, use a true COUNT
query.
This improves memory usage by not compiling a list of comment IDs. See #34057. git-svn-id: https://develop.svn.wordpress.org/trunk@34661 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
05e0a3b97e
commit
c1d7e7f5aa
@ -879,6 +879,7 @@ function get_page_of_comment( $comment_ID, $args = array() ) {
|
||||
'type' => $args['type'],
|
||||
'post_id' => $comment->comment_post_ID,
|
||||
'fields' => 'ids',
|
||||
'count' => true,
|
||||
'status' => 'approve',
|
||||
'date_query' => array(
|
||||
array(
|
||||
@ -888,8 +889,8 @@ function get_page_of_comment( $comment_ID, $args = array() ) {
|
||||
),
|
||||
);
|
||||
|
||||
$older_comment_ids = get_comments( $comment_args );
|
||||
$older_comment_count = count( $older_comment_ids );
|
||||
$comment_query = new WP_Comment_Query();
|
||||
$older_comment_count = $comment_query->query( $comment_args );
|
||||
|
||||
// No older comments? Then it's page #1.
|
||||
if ( 0 == $older_comment_count )
|
||||
|
Loading…
Reference in New Issue
Block a user