0

我有“产品”自定义帖子类型。它有 2 个自定义字段:price1、price2(产品价格)我想获取所有帖子 price1 < price2(比较 2 个值)

我怎样才能做到这一点?

4

1 回答 1

0

这是一个很好的示例,应该可以帮助您:

$args = array(      
    'tax_query' => array(
           'taxonomy' => 'custom_taxonomy_name',
        array(
            'key' => 'price',
            'value' => array( 100, 200 ),
            'compare' => 'BETWEEN',
            'type' => 'numeric',
        ),
        array(
            'key' => 'description',
            'value' => 'round',
            'compare' => 'NOT LIKE'
        )
    )
);

$query = new WP_Query($args);
于 2013-07-20T09:59:07.780 回答