使用值集中的元值查询POST

时间:2018-04-23 作者:TheKidsWantDjent

我试图构建一个返回所有帖子的查询,其中包含一个存在于一组值中的元值。

我的帖子有一个名为Asin_unique 我想找到所有有价值的帖子B006MWDNVI,B00BCMCIS2, 或B01ARRJFGA 在这个领域。

这是我迄今为止构建的内容,但它只会返回我的帖子B00BCMCIS2, 不是其他的。我需要做什么改变才能让它工作?

$args  = array(
    \'post_status\' => \'any\',
    \'post_type\'   => \'any\',
    \'numberposts\' => -1,
    \'meta_query\'  => array(
        array(
            \'key\'     => \'Asin_unique\',
            \'value\'   => \'(B006MWDNVI,B00BCMCIS2,B01ARRJFGA)\',
            \'compare\' => \'IN\',
        )
    )
);

$posts = get_posts( $args );

2 个回复
SO网友:Munish Kumar

检查这将为您工作。

$args  = array(
    \'post_status\' => \'any\',
    \'post_type\'   => \'any\',
    \'numberposts\' => -1,
    \'meta_query\'  => array(
        array(
            \'key\'     => \'Asin_unique\',
            \'value\'   => array(\'B006MWDNVI\',\'B00BCMCIS2\',\'B01ARRJFGA\'),
            \'compare\' => \'IN\',
        )
    )
);

$posts = get_posts( $args );
帮助链接:https://rudrastyh.com/wordpress/meta_query.html

SO网友:TheKidsWantDjent

在值中省略括号似乎可以做到这一点。我被通常在SQL中格式化IN的方式所误导,并认为这与WP查询是一样的,但您必须忽略它们:

$args  = array(
    \'post_status\' => \'any\',
    \'post_type\'   => \'any\',
    \'numberposts\' => -1,
    \'meta_query\'  => array(
        array(
            \'key\'     => \'Asin_unique\',
            \'value\'   => \'B006MWDNVI,B00BCMCIS2,B01ARRJFGA\',
            \'compare\' => \'IN\',
        )
    )
);

$posts = get_posts( $args );

结束

相关推荐

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

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