我想知道你是否在寻找wp_count_comments()
作用
要检索整个网站的评论计数统计信息,可以使用:
$comments_count = wp_count_comments();
或对于给定的帖子ID:
$comments_count = wp_count_comments( 123 );
它将返回具有以下属性的对象:
$comments_count->moderated
$comments_count->approved
$comments_count->spam
$comments_count->trash
$comments_count->total_comments
检查
Codex 有关更多信息和示例。