WordPress如何获取一定天数内发表的文章?分享一段WordPress获取一定天数内发表的文章代码:
<?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天内的文章。将代码添加到主循环的上面即可。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容