diff --git a/src/wp-includes/class-wp-comment-query.php b/src/wp-includes/class-wp-comment-query.php index bbc6fe2d66..e185ceb40e 100644 --- a/src/wp-includes/class-wp-comment-query.php +++ b/src/wp-includes/class-wp-comment-query.php @@ -481,7 +481,8 @@ class WP_Comment_Query { $_comments = apply_filters_ref_array( 'the_comments', array( $_comments, &$this ) ); // Convert to WP_Comment instances. - $comments = array_map( 'get_comment', $_comments ); + array_walk( $_comments, 'get_comment' ); + $comments = $_comments; if ( $this->query_vars['hierarchical'] ) { $comments = $this->fill_descendants( $comments );