網(wǎng)上搜索了一下,發(fā)現(xiàn) zwwooooo 大叔已經(jīng)折騰過這個功能,試了一下,還可以用,分享過來,有需要的朋友不妨試試。
直接將下面的函數(shù)添加到當前主題的 functions.php
/* 獲取文章的評論人數(shù) 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]; //返回評論人數(shù) } return 0; //沒有評論返回0 }
調(diào)用方法:
<?php echo zfunc_comments_users($postid); ?>
參數(shù)說明:$postid 是需要獲取評論人數(shù)的文章ID
一般用法:在一般主題的loop里面可以這樣用:
<?php echo zfunc_comments_users($post->ID); ?>
PS:還可以輸出評論總數(shù),用法:
<?php echo zfunc_comments_users($postid, 1); ?>
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: WordPress調(diào)用評論人數(shù)