Hello,嗨,大家好,我是哈喽猿。
这里是哈喽猿网
今天推送的是wordpress教程的文章,感谢您宝贵的时间阅读
直接将下面的函数添加到当前主题的 functions.php
* 获取文章的评论人数 by zwwooooo | zww.me */
function zfunc_comments_users($postid=0,$which=0) {
$comments = get_comments('status=approve&type=comment&post_id='.$postid); //获取文章的所有评论
if ($comments) {
$i=0; $j=0; $commentusers=array();
foreach ($comments as $comment) {
++$i;
if ($i==1) { $commentusers[] = $comment->comment_author_email; ++$j; }
if ( !in_array($comment->comment_author_email, $commentusers) ) {
$commentusers[] = $comment->comment_author_email;
++$j;
}
}
$output = array($j,$i);
$which = ($which == 0) ? 0 : 1;
return $output[$which]; //返回评论人数
}
return 0; //没有评论返回0
}
使用说明:
<?php echo zfunc_comments_users($postid); ?>
参数描述:$postid是需要获取注释数量的项目ID
一般用法:您可以在一般主题的循环中使用它:
<?php echo zfunc_comments_users($post->ID); ?>
ps:也可以输出注释总数,使用:
<?php echo zfunc_comments_users($postid, 1); ?>
0 评论