WordPress获取指定时间内评论最多日志实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-03-19 21:55:48 浏览: 评论:0
本文章来给各位同学介绍wordpress所有时间内评论最多日志 本周评论最多日志 本月评论最多日志 最近30天评论最多日志 代码,有需要了解学习的朋友可参考.
WordPress功能函数query_post()的一种高级用法,就是获取本周或当月或最近30天评论最多的一定数量的日志.
下面要讲的是,通过使用query_posts()函数来获取本周、本月或最近30天内容评论最多的日志.
WordPress所有时间内评论最多日志
首先,让我们来看看获取所有时间内评论最多日志的代码,代码如下:
- <ul>
- <?php query_posts('post_type=post&posts_per_page=10&orderby=comment_count&order=DESC');
- while (have_posts()):
- the_post(); ?>
- <li><a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr('Permalink to %s'), the_title_attribute('echo=0')); ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php endwhile; wp_reset_query(); ?>
- </ul>
这段代码默认显示前10篇评论最多的日志,数量10可修改为其它数值。
WordPress本周评论最多日志
要显示本周评论最多日志,我们就可以使用如下的代码,也就是在前面代码的基础上再添加一些额外的参数来实现:
- <ul>
- <?php $week = date('W'); $year = date('Y'); query_posts('post_type=post&posts_per_page=10&orderby=comment_count&order=DESC&year=' . $year . '&w=' . $week);
- while (have_posts()):
- the_post(); ?>
- <li><a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr('Permalink to %s'), the_title_attribute('echo=0')); ?>" rel="bookmark"><?php the_title(); ?></a></li>
- <?php endwhile; wp_reset_query(); ?>
- </ul>
WordPress本月评论最多日志
类似地,显示当月评论最多的日志,可以使用下面的代码:
- <ul>
- <?php $month = date('m'); $year = date('Y'); query_posts('post_type=post&posts_per_page=10&orderby=comment_count&order=DESC&year=' . $year . '&monthnum=' . $month); while (have_posts()): the_post(); ?>
- <li><a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr('Permalink to %s'), the_title_attribute('echo=0')); ?>" rel="bookmark"><?php the_title(); ?></a></li>
- <?php endwhile; wp_reset_query(); ?>
- </ul>
WordPress最近30天评论最多日志
要获取最近30天内评论最多的日志所用的代码要复杂一些,代码如下:
- <ul>
- <?php function filter_where($where = '') { //posts in the last 30 days $where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'"; return $where; } add_filter('posts_where', 'filter_where'); query_posts('post_type=post&posts_per_page=10&orderby=comment_count&order=DESC'); while (have_posts()): the_post(); ?>
- <li><a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr('Permalink to %s'), the_title_attribute('echo=0')); ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php endwhile; wp_reset_query(); ?>
- </ul>
代码中的“30 days”可以根据需要修改为其他值(如“1 year”,“7 days”,等),将以上各段代码放置到需要显示最热日志的主题模板文件中适当的位置即可,如边栏(sidebar.php)等.
query_posts() 确实是一条相当有用的功能函数,就如本文所介绍的一样,可以为其设定许多参数.
Tags: WordPress 实例 时间 日志
相关文章
- ·WordPress初级教程1:什么是博客?(2013-11-11)
- ·WordPress初级教程-2: 什么是WordPress?(2013-11-11)
- ·WordPress初级教程-3: WordPress的功能和特点(2013-11-11)
- ·WordPress初级教程-4: 选择WordPress博客的主机和域名(2013-11-11)
- ·WordPress初级教程-5: 安装WordPress(2013-11-11)
- ·WordPress初级教程-6: 本地安装WordPress(2013-11-11)
- ·WordPress初级教程-7: 一个数据库中安装多个WordPress博客(2013-11-11)
- ·WordPress初级教程-8: WordPress控制面板/ Dashboard(2013-11-11)
- ·WordPress初级教程-9: WordPress用户设置/ Users(2013-11-11)
- ·WordPress初级教程-10: WordPress博客配置/ Settings(2013-11-11)
- ·关于wordpress上传图片不显示的原因(2013-11-11)
- ·WordPress程序的脆弱点你知道吗 (2013-11-11)
- ·总结八大Wordpress网站百度收录实现秒收的方法绝招 (2013-11-11)
- ·WordPress如何网站投稿者也可以上传图片(2014-03-18)
- ·WordPress怎么修改新用户注册邮件内容(2014-03-18)
- ·WordPress怎么添加前台注册功能(2014-03-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)