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修改为你要的天数即可
新闻热点
疑难解答