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?

link|improve this question
feedback

1 Answer

You need wp_count_comments().

$comments_count = wp_count_comments();
$comments_count->moderated; // (int) comments in moderation 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.