Is there any ‘official’ way to get the number of comments, awaiting moderation? I’ve taken a look at get_comments_status – is it what I need or are there other methods?

1 Answer
1

You need wp_count_comments().

$comments_count = wp_count_comments();
$comments_count->moderated; // (int) comments in moderation 

Leave a Reply

Your email address will not be published. Required fields are marked *