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

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

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天内的文章。将代码添加到主循环的上面即可。

类别:WordPress技巧

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT