WordPress 获取一定天数内发表的文章代码:
- <?php
- function filter_where($where = ) {
- $where .= . date(\’Y-m-d\’, strtotime(\’- days\’)) . ;
- $where;
- }
- add_filter(\’posts_where\’, \’filter_where\’);
- query_posts($query_string);
- ?>
默认是60天内的文章。
将代码添加到主循环的上面。
WordPress 获取一定天数内发表的文章代码:
默认是60天内的文章。
将代码添加到主循环的上面。
暂无评论内容