前些天,和恒創科技聯合舉辦瞭一次踢樓活動(詳見),活動結束後要統計此次參與踢樓的用戶數量,也就是要統計提交瞭迴響的用戶數,在網上搜索瞭一下,發現 zwwooooo 大叔已經折騰過這個功能,試瞭一下,還可以用,分享過來,有需要的朋友不妨試試。
直接將下面的函數添加到當前主題的 functions.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/* 獲取文章的迴響人數 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 } |
/* 獲取文章的迴響人數 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
}
調用方法:
1 |
<?php echo zfunc_comments_users($postid); ?> |
<?php echo zfunc_comments_users($postid); ?>
參數說明:$postid 是需要獲取迴響人數的文章ID
一般用法:在一般主題的loop裡面可以這樣用:
1 |
<?php echo zfunc_comments_users($post->ID); ?> |
<?php echo zfunc_comments_users($post->ID); ?>
PS:還可以輸出迴響總數,用法:
1 |
<?php echo zfunc_comments_users($postid, 1); ?> |
<?php echo zfunc_comments_users($postid, 1); ?>
代碼出自:http://zww.me/archives/25613