diff --git a/wp-includes/comment.php b/wp-includes/comment.php index b034013ee..4d0c6d4b7 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -696,9 +696,11 @@ function wp_count_comments( $post_id = 0 ) { $total = 0; $approved = array('0' => 'moderated', '1' => 'approved', 'spam' => 'spam'); + $known_types = array_keys( $approved ); foreach( (array) $count as $row_num => $row ) { $total += $row['num_comments']; - $stats[$approved[$row['comment_approved']]] = $row['num_comments']; + if ( in_array( $row['comment_approved'], $known_types ) ) + $stats[$approved[$row['comment_approved']]] = $row['num_comments']; } $stats['total_comments'] = $total;