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 修改為你要的天數即可