需要税务查询的terms参数。把分类法的所有术语都传给它
$args = array(
\'post_type\' => \'cars\',
\'tax_query\' => array(
\'relation\' => \'OR\',
array(
\'taxonomy\' => \'brand\',
\'field\' => \'slug\',
\'terms\' => \'bmw\'
),
array(
\'taxonomy\' => \'color\',
\'field\' => \'id\',
\'terms\' => get_terms(\'color\', array(\'fields\'=>\'ids\') )
)
)
);
注意:此查询还将返回没有附加品牌但有颜色的“汽车”。