我有两种职位类型,一种是产品,另一种是品牌,并具有分类产品类别。如何获取特定产品类别中具有特定品牌的产品列表
答案 0 :(得分:0)
我认为类似的东西应该起作用。
$args = array(
'post_type' => 'product',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'include_children' => true
),
),
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'meta_field_name_for_brand',
'value' => 'meta_value_saved_for_product_post',
)
)
);
$products = new WP_Query($args);
if($products->have_posts()) {
while ( $products->have_posts() ) :
$products->the_post();
the_title();
endwhile;
}