如何通过比较2个自定义字段值来获取帖子?

时间:2013-07-20 05:24:48

标签: wordpress compare custom-fields

我有“产品”自定义帖子类型。它有2个自定义字段:price1,price2(产品价格) 我希望所有帖子都有price1< price2(比较2个值)

我该怎么做?

1 个答案:

答案 0 :(得分: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);