WordPress 网站按评论数量显示前100名的评论者的方法

2023年2月14日06:29:00 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

WordPress 网站按评论数量显示前100名的评论者的方法

WordPress 网站按评论数量显示前100名的评论者的方法。如想看看自己博客上哪位博友的留言评论最多及最后的评论时间,下面一段代码会帮你实现这个功能。

1、可以将下面代码添加到当前主题functions.php中:

  1. function top_comment_authors($amount = 100) {    global $wpdb;        $prepared_statement = $wpdb->prepare(        'SELECT        COUNT(comment_author) AS comments_count, comment_author, comment_author_url, MAX( comment_date ) as last_commented_date        FROM '.$wpdb->comments.'        WHERE comment_author != "" AND comment_type = "" AND comment_approved = 1        GROUP BY comment_author        ORDER BY comments_count DESC, comment_author ASC        LIMIT %d',        $amount);    $results = $wpdb->get_results($prepared_statement);    $output = '<ul class="top-comments">';    foreach($results as $result) {        $output .= '<li class="top-comment-author"><strong> <a href="'.$result->comment_author_url.'" target="_blank" rel="external nofollow">'.$result->comment_author.'</a></strong> 共'.$result->comments_count.' 条评论,最后评论 '.human_time_diff(strtotime($result->last_commented_date)).'前</li>';    }    $output .= '</ul>';    echo $output;}  

2、调用代码:

  1. <?php top_comment_authors(100); ?>  

3、将代码添加到WordPress主题模板适当位置即可,其中的数字100可以控制显示数量。

4、可以通过以上代码做一个读者排行榜。

1、阿里云产品最新优惠领取地址:立即前往

2、阿里云服务器优惠券领取地址优惠购买地址:点击前往

3、阿里云最新优惠活动地址汇总,共16个,地址:点击前往

4、同配置云产品腾讯云相对便宜,先点此一键领取2860元无门槛满减券(老用户换QQ登陆,同一实名享新人特价),再点此进入腾讯云活动页面12年老码农建议:服务器升级、复购、续费贵,数据迁移也麻烦,建议用好新人优惠资格,买多年,配置一次性到位,后期省事又省钱。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: