ACF的WP_QUERY结果问题

时间:2020-10-10 作者:Encore Services

我设置了以下查询

$argsar = array (
\'numberposts\'   => 1,
\'post_type\' => \'auctionroom\',
\'meta_key\'  => \'auctionroom_username\',
\'compare\' => \'=\',
\'value\'   => $auctionroomname
);
$the_queryar = new WP_Query($argsar);
if ($the_queryar->have_posts()) {
$causercheck = $the_queryar->found_posts;
$the_queryar->the_post();
$auctionroom_id = get_the_ID();
}
它应该只返回1个结果,但当我得到

$causercheck = $the_queryar->found_posts;

有无numberposts给出了相同的错误总数

感谢您提供的任何线索

RunningWordpress版本:5.5.1,ACF版本:5.9.1

1 个回复
SO网友:Encore Services

看来我使用的格式$argsar 需要更改为

$argsar = array (
        \'post_type\' => \'auctionroom\',
        \'meta_query\' => array(
                  array(
                        \'key\'     => \'auctionroom_username\',
                        \'compare\' => \'=\',
                        \'value\'   => $auctionroomname
                    )
                )
        );
希望它能帮助别人

相关推荐

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

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