我在这里运行此查询以打印我的wordpress索引页面上的帖子:
query_posts($ query_string。'& order = ASC'。'& post.status = future,publish');
它为我提供了具有状态发布或未来升序的帖子。现在我想添加一个过滤器,此查询仅显示TODAY的帖子。所以在当前日期发布的帖子。
你能帮我解决这个问题吗?我尝试了很多,但没有任何工作或改变任何东西,所以我希望你们有一些意见。
提前非常感谢!
答案 0 :(得分:0)
也许是这样的:
$today = getdate();
$year=$today["year"];
$month=$today["mon"];
$day=$today["mday"];
query_posts( $query_string.'order=ASC' . '&post.status=future,publish'.'&year='.$year.'&monthnum='.$month.'&day='.$day );