我有“产品”自定义帖子类型。它有2个自定义字段:price1,price2(产品价格) 我希望所有帖子都有price1< price2(比较2个值)
我该怎么做?
答案 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);