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

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

  1. <?php
  2. function filter_where($where = ) {
  3. $where .= . date(\’Y-m-d\’, strtotime(\’- days\’)) . ;
  4. $where;
  5. }
  6. add_filter(\’posts_where\’, \’filter_where\’);
  7. query_posts($query_string);
  8. ?>

默认是60天内的文章。

将代码添加到主循环的上面。

    © 版权声明
    THE END
    喜欢就支持一下吧
    点赞0 分享
    评论 抢沙发

    请登录后发表评论

      暂无评论内容