尝试仅显示评论数而不是总数,包括pingbacks和trackbacks
get_comments_number() // displays the total of comments, pingbacks and trackbacks
我尝试使用下面的代码但是没有工作
count($wp_query->comments_by_type['comment']);
答案 0 :(得分:2)
您可以使用get_comments function执行此操作。
$num_comments = get_comments(
array(
'post_id' => get_the_ID(),
'type' => 'comment',
'count' => true // return only the count
)
);