900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > 河源微信分销系统开发日记:wordpress每篇文章评论人数统计

河源微信分销系统开发日记:wordpress每篇文章评论人数统计

时间:2021-09-30 20:51:10

相关推荐

河源微信分销系统开发日记:wordpress每篇文章评论人数统计

// 每篇文章评论数量function 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}

在开发河源微信分销系统官网时,需要统计每篇文章评论人数,通过以上代码轻松实现,这里记录一下。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。