We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ccc287 commit be45039Copy full SHA for be45039
1 file changed
src/Comment_Command.php
@@ -795,11 +795,13 @@ static function ( $id ) use ( $exclude_list ) {
795
* @return array Array of comment IDs.
796
*/
797
private function get_all_comment_ids() {
798
- $query = new WP_Comment_Query();
799
- $comments = $query->query( array(
800
- 'fields' => 'ids',
801
- 'number' => 0, // Get all comments
802
- ) );
+ $query = new WP_Comment_Query();
+ $comments = $query->query(
+ array(
+ 'fields' => 'ids',
+ 'number' => 0, // Get all comments
803
+ )
804
+ );
805
806
return $comments;
807
}
0 commit comments