如何使用WP_QUERY搜索给定POST_CONTENT和POST_EXCEPT的帖子?

时间:2017-03-01 作者:Scott Paterson

正在尝试搜索给定post\\u内容和post\\u摘录的帖子。这是我的代码:

    $query = new WP_Query(array(
        \'post_type\'                 => \'post_type_here\',
        \'post_content\'              => $order_id,
        \'post_excerpt\'              => $product_id
    ));

    echo "<pre>";
    print_r($query->posts);
出于某种原因,此代码的结果是该post\\u类型中的所有帖子。

我需要它来显示post\\u content=VALUE和post\\u extract=VALUE的帖子。

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

我能找到的唯一解决方案是将我的两个值保存为post\\u meta,然后使用以下代码:

$args = array(
    \'post_type\'                 => \'POST_TYPE_HERE\',
    \'post_status\'               => \'active\',
    \'update_post_term_cache\'    => false, // don\'t retrieve post terms
    \'meta_query\'        => array(
    \'relation\'          => \'and\',
        array(
            \'key\'       => \'META1_NAME\',
            \'value\'     => $order_id,
            \'compare\'   => \'=\',
        ),
        array(
            \'key\'       => \'META2_NAME\',
            \'value\'     => $product_id,
            \'compare\'   => \'=\',
        )
    )
);

$posts_array = new WP_Query($args);

相关推荐

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

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