我创建了一个类似的查询:
<?php
$args = array(
'numberposts' => -1,
'post_type' => 'product',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'pa_color',
'value' => array('red'),
'compare' => 'IN',
),
array(
'key' => 'pa_for',
'value' => 'Men',
'compare' => '=',
),
),
);
$post = get_posts($args);
echo '<pre>';
print_r($post);
echo '</pre>';
当我尝试运行此代码时,我什么都没得到。请帮我查一下这个查询,如何按属性和价格获得产品?我在term_taxonomy表中使用meta_key。非常感谢!