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

WordPress 获取一定天数内发表的文章代码: <?php function filter_wher…

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

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

默认是60天内的文章。

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

类别:WordPress入门

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册