欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

WordPress主题模板按评论数量显示前100名评论者的方法

时间: 2024-02-25 10:35 阅读: 作者:素材无忧网

如想看看自己博客上哪位博友的留言评论最多及最后的评论时间,下面一段代码会帮你实现这个功能。
可以将下面代码添加到当前主题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 = '
    '; foreach($results as $result) { $output .= '
  • '.$result->comment_author.' 共'.$result->comments_count.' 条评论,最后评论 '.human_time_diff(strtotime($result->last_commented_date)).'前
  • '; } $output .= '
'; echo $output; }
调用代码:
将代码添加到WordPress主题模板适当位置即可,其中的数字100可以控制显示数量。

版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: WordPress主题模板按评论数量显示前100名评论者的方法

标签: WordPress主题  
推荐文章
模板推荐