0

我需要修改单页上的查询以显示带有 post_status 发布和未来的帖子(默认不显示带有未来帖子状态的帖子)。这是我的代码,但不工作

query_posts($query_string . '&post_status=publish,future');
4

1 回答 1

0

要获得这两个帖子,您需要对 post_status 使用以下代码

$args = array('post_status' =>array('future','published')); 查询帖子($args);

于 2013-02-24T17:04:29.623 回答