首页 > 网站 > 建站经验 > 正文

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

2024-04-25 20:41:44
字体:
来源:转载
供稿:网友

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表