web-dev-qa-db-ja.com

モデレート待ちのコメント数を取得する

節度を待って、コメントの数を得るための「公式の」方法はありますか? get_comments_status を見てみましたが、それが必要なのでしょうか、それとも他の方法がありますか?

2
elixoid

あなたは wp_count_comments() が必要です。

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