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

WordPress如何获取一定天数内发表的文章?分享一段WordPress获取一定天数内发表的文章代码:

WordPress如何获取一定天数内发表的文章? (https://www.wpzt.net/) WordPress基础教程 第1张

<?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
喜欢就支持一下吧
点赞13 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容