我正在运行此查询以打印出我的帖子。它可以工作,但我想添加一个参数,告诉系统只显示今天或将来发布的帖子!
这是查询:
$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
);
我试图做类似的事情,&post.date = <= $today
但没有奏效。
拜托,谁能告诉我怎么做?
我的想法是告诉查询仅显示发布日期为今天或“小于”今天的帖子。这就是为什么" <= "
.