Get_post()不能与多个状态一起使用

时间:2020-04-18 作者:Guerrilla

我正在运行以下代码:

$posts = get_posts([
    \'post_type\'   => [\'my-type\', \'another-type\'],
    \'numberposts\' => -1,
    \'order\'       => \'ASC\',
    \'orderby\'     => \'title\',
    \'post_status\' => [\'published\',\'future\']
]);
它只返回数组中最后出现的状态。因此,在上面的示例中,它返回所有状态为的帖子future. 如果我交换订单,它只会返回published 职位。

我设置了一个断点,并将参数传递给WP\\u Query(),它们如下所示:

Array
(
    [numberposts] => -1
    [category] => 0
    [orderby] => title
    [order] => ASC
    [include] => Array
        (
        )

    [exclude] => Array
        (
        )

    [meta_key] => 
    [meta_value] => 
    [post_type] => Array
        (
            [0] => my-type
            [1] => another-type
        )

    [suppress_filters] => 1
    [post_status] => Array
        (
            [0] => published
            [1] => future
        )

    [posts_per_page] => -1
    [ignore_sticky_posts] => 1
    [no_found_rows] => 1
)
我看到过状态和类型作为数组传递的示例。我做错了什么?

1 个回复
最合适的回答,由SO网友:Jacob Peattie 整理而成

已发布帖子的正确帖子状态为publish. Post状态为现在时(Sopublish, 不published, 和draft, 不drafted).

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post