我怎么能只统计客人的评论呢?

时间: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

结束

相关推荐

Activation Account Email

我使用betnami托管的wordpress多站点,当用户在该站点注册时,他应该会收到一封带有激活链接的电子邮件,但它不起作用!那么,如何让它发挥作用呢?如果可行,如何定制用户收到的电子邮件。顺致敬意,