WordPress 获取一定天数内发表的文章, 下面代码是获取近 60 天内的文章,将下面代码添加到主循环的上面即可:

<?php
  function 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);
?>
注意:60 前边的"-"一定要有哦
将 60 修改为你要的天数即可