我以前写过关于免插件读者墙的文章,那个版本是按每月评论最多的读者来排序的,也就是每月1号会清零重新计算。文章链接:用代码武装你的wordpress [part 1]
willin 后来根据这个修改了一下,唯一不同的 willin 修改的是按照最近 30 天内评论最多的读者排序的,我觉得这样更适合“最活跃的读者”的定义,所以我今晚换为 willin 这个版本了
因为 willin 的是使用 willin 的简单 gravatar 头像缓存的基础上的代码,我特意改出 2 个版本:1 个是针对没有使用头像缓存的,1 个是使用了头像缓存的。
一、没有使用头像缓存的读者墙代码:
<h2>Most Active Friends</h2> <ul class="ffox_most_active"> <?php $counts = $wpdb->get_results("SELECT COUNT(comment_author) AS cnt, comment_author, comment_author_url, comment_author_email FROM (SELECT * FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->posts.ID=$wpdb->comments.comment_post_ID) WHERE comment_date > date_sub( NOW(), INTERVAL 1 MONTH ) AND user_id='0' AND comment_author != 'zwwooooo' AND post_password='' AND comment_approved='1' AND comment_type='') AS tempcmt GROUP BY comment_author ORDER BY cnt DESC LIMIT 12"); foreach ($counts as $count) { $c_url = $count->comment_author_url; if ($c_url == '') $c_url = 'https://zww.me/'; $mostactive .= '<li class="mostactive">' . '<a href="'. $c_url . '" title="' . $count->comment_author . ' ('. $count->cnt . 'comments)">' . get_avatar($count->comment_author_email, 40) . '</a></li>'; } echo $mostactive; ?> </ul>
说明:
- 里面添加了 2 个 class:ffox_most_active 和 mostactive,根据自己模板在 style.css 设置样式吧
- 里面的 https://zww.me 改为你自己博客的网址
- 代码里面“DESC LIMIT 12”的 12 是要现示的读者数量
- 代码里面的“zwwooooo”是指除博主以外的意思,替换为自己的 WP 用户名吧
我的 css 样式参考:
#sidebar .ffox_most_active li{ list-style:none; float:left; border:none; line-height:0; } #sidebar .ffox_most_active img.avatar{ width:38px; height:38px; border:1px solid #ddd;padding:2px;margin:0 1px 0 0;}
二、使用了 willin 的简单 gravatar 头像缓存的读者墙代码:
<h2>Most Active Friends</h2> <ul class="ffox_most_active"> <?php $counts = $wpdb->get_results("SELECT COUNT(comment_author) AS cnt, comment_author, comment_author_url, comment_author_email FROM (SELECT * FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->posts.ID=$wpdb->comments.comment_post_ID) WHERE comment_date > date_sub( NOW(), INTERVAL 1 MONTH ) AND user_id='0' AND comment_author != 'zwwooooo' AND post_password='' AND comment_approved='1' AND comment_type='') AS tempcmt GROUP BY comment_author ORDER BY cnt DESC LIMIT 12"); foreach ($counts as $count) { $a = get_bloginfo('wpurl') . '/avatar/' . md5(strtolower($count->comment_author_email)) . '.jpg'; $c_url = $count->comment_author_url; if ($c_url == '') $c_url = 'https://zww.me/'; $mostactive .= '<li class="mostactive">' . '<a href="'. $c_url . '" title="' . $count->comment_author . ' ('. $count->cnt . 'comments)"><img src="' . $a . '" alt="' . $count->comment_author . ' ('. $count->cnt . 'comments)" class="avatar" /></a></li>'; } echo $mostactive; ?> </ul>
说明参考第一种
OK,CP吧 ,折腾吧
附 willin 的原文链接:《WordPress 免插件版侧边栏读者墙》
zww
赏
oooo
or
- 本文标题:WordPress 免插件读者墙 willin 版本
- 本文链接:https://zww.me/archives/24732
- 发布时间:2009年12月05日 21:33
- 版权声明:除非注明,文章均为 zwwooooo 原创,转载请以链接形式标明本文地址!
改了边栏和CSS读者墙还是竖直的,给你发了邮件,希望能得到你的帮助。
谢谢啊,用了你给的代码就可以了,不过我还想让读者墙三个字和我博客侧边栏的热门文章之类的字体一致,请问要怎么改?
@媛诺诺
#sidebar .ffox_most_active li{
list-style:none;
float:left;
border:none;
line-height:0;
}
这段没用,删了吧,然后
#main .widget-area ul.ffox_most_active li{float:left;}变成
#main .widget-area ul.ffox_most_active li{float:left;list-style:none;}
再完美点就加上如下
#main .widget-area ul.ffox_most_active{margin-left:0;}
如果觉得右边有空位就把头像改为33×33大小,这样一行就能显示6个头像,总头像就设为18个,自己算一下就行了。
@zwwooooo
简直太完美了,灰常感谢博主
@媛诺诺
折腾的乐趣在此,稍微了解一下css你会觉得更有意思,如下面的:
#sidebar .ffox_most_active img.avatar{
width:33px;
height:33px;
border:1px solid #ddd;padding:2px;margin:0 1px 0 0;}
这些是不起作用的,你要它们起作用,那么应该把#sidebar .ffox_most_active img.avatar改为#main .widget-area ul.ffox_most_active img.avatar
但这样的话就要重新调整头像大小和数字了,慢慢折腾。
@媛诺诺
今天起早了,另外跟你解释一下#main .widget-area ul.ffox_most_active img.avatar里面的css属性:
width:33px;
height:33px;
这2个是头像的宽和高,所以头像大小你不需要去修改读者墙代码(只要那个头像调用函数get_avatar的数值大于此宽高即可,你现在设置的是33)
border:1px solid #ddd;
这个是给头像加框框啦
padding:2px;
这个是头像跟框框的间距
margin:0 1px 0 0;
这是每个头像右边间隙。
[...] 原文地址:http://zww.me/archives/24732 [...]
过来求教 单人评论数 的函数
@无冷
你指某个人的评论数?貌似是要用sql实现,具体搜索一下,有人写过类似的。
@zwwooooo
恩,多谢,偶去搜索下
[...] 1.wordPress 免插件读者墙 willin 版本:http://zww.me/archives/24732/comment-page-2 [...]
[...] 多亏丕子兄的帮助。 我参考了ZWWoOoOo大神写的《WordPress 免插件读者墙 willin 版本》和荒野无灯大神 [...]
对于一个代码白痴来说,这个看起来很有压力~!
@雨帆
这……需要折腾精神
正是需要的功能呢
这要什么插件吗?
@infly
这是代码实现的功能。
亲爱的zww。为什么我在本地测试的时候。侧边栏是竖直显示的吖。css具体要肿么改吖、、求指导。。
@Duoqiu
要针对自己主题修改css
有点复杂
继续折腾去。
我准备折腾这个了。正在找资料
@天添MM
大部分是willin版本