WordPress 怎么获取一定天数内发表的文章?

WordPress 如何获取一定天数内发表的文章?WordPress 获取一定天数内发表的文章代码:

1、WordPress 获取一定天数内发表的文章代码:

  1. <?phpfunction filter_where($where = ) {$where .= ” AND post_date > ‘” . date(‘Y-m-d’, strtotime(‘-60 days’)) . “‘”;return $where;}add_filter(‘posts_where’, ‘filter_where’);query_posts($query_string);?>  

2、默认是60天内的文章。可更根据需要调整,将代码添加到主循环的上面。


评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注