我怎么能只统计客人的评论呢? 时间:2015-04-20 作者:Omid Toraby 我需要忽略comments number功能中的counting author回复,例如,如果我有9条回复(评论),其中4条属于post author,我会在我的帖子中显示5条评论作为评论编号。你知道做这件事的方法吗?提前谢谢。 1 个回复 最合适的回答,由SO网友:Trang 整理而成 你可以在里面用the loop, 或在中comments.php//The author of current post $author_ID = get_the_author_meta("ID"); //The current post ID $p_ID = get_the_ID(); //Number of guest comments echo count(get_comments(array( \'post_id\' => $p_ID, \'author__not_in\' => array($author_ID) ))); 更多信息:https://codex.wordpress.org/Function_Reference/get_comments 结束 文章导航