欢迎您光临自学哈网,只为分享网络知识教程,供大家学习参考!

「自学哈网」按评论数量显示WordPress前100名的评论者

作者 : 自学哈 本文共955个字,预计阅读时间需要3分钟 2022-11-6 共154人阅读
也想出现在这里? 联系我们

按评论数量显示Wordpress前100名的评论者

如想看看自己博客上哪位博友的留言评论最多及最后的评论时间,下面一段代码会帮你实现这个功能。

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

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;}

调用代码:

<?php top_comment_authors(100); ?>

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

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

本站声明:
本站所有资源来源于网络,分享目的仅供大家学习和交流!如若本站内容侵犯了原著者的合法权益,可联系邮箱976157886@qq.com进行删除。
自学哈专注于免费提供最新的分享知识、网络教程、网络技术的资源分享平台,好资源不私藏,大家一起分享!

自学哈网 » 「自学哈网」按评论数量显示WordPress前100名的评论者
也想出现在这里? 联系我们
© 2022 Theme by - 自学哈网 & WordPress Theme. All rights reserved 浙ICP备2022016594号