A5下载文章资讯

分类分类

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

2015-09-07 13:48作者:fang

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

展开全部

相关

说两句网友评论
    我要跟贴
    取消