在使用wordpress的侧边栏中很多同学会发现有的wordpress有这样一个功能
原主题这个小工具是显示不了最近访客的,百度一下看到歧路亡羊博客里面有介绍实现,但是不能抓取到QQ或者其它新浪的头像。于是我自己整了一套,就是上面的代码。 接下来是小工具代码:
最后还是在functions.php中注册这个小工具。
OK了,大功告成!
1 2 3 4 5 6 7 8 9 10 11 | //读者墙 function zsofa_most_active_friends($friends_num = 10) { global $wpdb; $counts = $wpdb->get_results( "SELECT * FROM (SELECT * FROM $wpdb->comments) AS tempcmt GROUP BY comment_author_email ORDER BY comment_date DESC LIMIT $friends_num" ); foreach ($counts as $count) { $c_url = $count->comment_author_url; if ($c_url == '' ) $c_url = get_bloginfo( 'url' ); $mostactive .= '<li class="read_li">' . '<a href="' . $c_url . '" title="' . $count->comment_author . '">' . get_avatar($count, 58) . '</a></li>' ; } return $mostactive; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | //读者墙reader class readerWidget extends WP_Widget { function readerWidget(){ $widget_ops = array( 'classname' => 'widget_reader' , 'description' => '侧边栏显示读者墙' ); $control_ops = array( 'width' =>250, 'height' =>300); $ this ->WP_Widget( false , '[FO]读者墙' , $widget_ops, $control_ops); } function form($instance){ $instance = wp_parse_args((array)$instance,array( 'title' => '读者墙' , 'readerNum' => '24' )); //默认值 $title = htmlspecialchars($instance[ 'title' ]); $readerNum = htmlspecialchars($instance[ 'readerNum' ]); echo '<p style="text-align:left;"><label for="' .$ this ->get_field_name( 'title' ). '">标题:<input style="width:200px;" id="' .$ this ->get_field_id( 'title' ). '" name="' .$ this ->get_field_name( 'title' ). '" type="text" value="' .$title. '"></label></p>' ; echo '<p style="text-align:left;"><label for="' .$ this ->get_field_name( 'readerNum' ). '">显示读者数量:<input style="width:200px;" id="' .$ this ->get_field_id( 'readerNum' ). '" name="' .$ this ->get_field_name( 'readerNum' ). '" type="text" value="' .$readerNum. '"></label></p>' ; } function update($new_instance,$old_instance){ $instance = $old_instance; $instance[ 'title' ] = strip_tags(stripslashes($new_instance[ 'title' ])); $instance[ 'readerNum' ] = strip_tags(stripslashes($new_instance[ 'readerNum' ])); return $instance; } function widget($args, $instance){ extract($args); $title = apply_filters( 'widget_title' , empty($instance[ 'title' ]) ? __( '活跃读者' , 'yang' ) : $instance[ 'title' ]); //小工具前台标题 $title = $title; $readerNum = $instance[ 'readerNum' ]; echo $before_widget; //id开始框 if ( $title ) echo $before_title . $title . $after_title; //标题 if (function_exists( 'zsofa_most_active_friends' )) { echo "<ul class=" read_ul ">" . zsofa_most_active_friends($readerNum) . "</ul>" ;} ; echo $after_widget; //框架结束 } } |
1 | register_widget( 'readerWidget' ); |
收藏的用户(0) X
正在加载信息~
推荐阅读
最新回复 (0)
站点信息
- 文章2302
- 用户1336
- 访客10975456
每日一句
If you want to achieve greatness, stop asking for permission.
如果你想获得伟大,别再请求许可。
如果你想获得伟大,别再请求许可。
UAC的限制引起WM_DROPFILES无法响应的解决办法
MeasureSpec中三种模式:UNSPECIFIED,AT_MOST,EXACTLY
发几个实用的chrome插件
CentOS下使用 svnsync迁移SVN代码库
仙剑奇侠传3d回合-PC端辅助
【转载】C++实现EXE加载到内存执行
【收藏】OpenCV一些常用库函数
《闲来麻将》搭建教程
文本转语音系统Spark-TTS
wordpress转xiuno附件自动插入工具
Mac OS最简单及(Karabiner)快捷键设置
使用Putty上传文件?
ndk神奇问题之non-numeric second argument to `wordlist' function: '8.7z'
新会员