您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
WordPress主题模板按评论数量显示前100名评论者的方法
张津广2023-11-01 00:44:16WordPress教程已有人查阅
导读如想看看自己博客上哪位博友的留言评论最多及最后的评论时间,下面一段代码会帮你实现这个功能。
如想看看自己博客上哪位博友的留言评论最多及最后的评论时间,下面一段代码会帮你实现这个功能。
可以将下面代码添加到当前主题functions.php中:
可以将下面代码添加到当前主题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可以控制显示数量。
本文标签:
很赞哦! ()
相关文章
随机图文
-
wordpress更换域名的步骤教程
不管是个人网站还是企业网站,一般我们都不建议更换网站域名,因为这不但会影响网站在搜索引擎结果中的排名,减少网站的访问量 -
wordpress适合做什么类型的网站
wordpress是一个博客程序,也可以做cms,也可以做企业站,关键在于后期如何应用了,具体是什么呢:WordPress是一种使用PHP语言开发的博客平台 -
修复WordPress密码设置链接错误的两种方法
当用户注册或者忘记密码获取新密码时WordPress会自动向用户邮箱中发送一个验证链接地址,用户通过打开这个链接设置密码 -
wordpress建站的方法,wordpress做网站的步骤教学
在开始之前,如果你什么都不懂,我建议你不要冒然购买任何东西,可以咨询一下行业内的人,避免买错东西,浪费时间和金钱。
留言与评论 (共有 条评论) |