最近访客
百度未收录

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

WordPress 获取一定天数内发表的文章-狐狸库
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天内的文章。可更根据需要调整

将代码添加到主循环的上面。

温馨提示: 本文最后更新于2022/10/20 04:05:05。若文章内容或图片失效,请 留言联系站长反馈!
!
也想出现在这里? 联系我们
创意广告
© 版权声明
THE END
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    请登录后查看评论内容