,可以通过以下步骤实现:
$args = array(
'post_type' => 'your_custom_post_type',
'tax_query' => array(
array(
'taxonomy' => 'your_custom_taxonomy',
'field' => 'slug',
'terms' => 'your_brand_category',
),
),
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// 在这里输出特定品牌类别的产品信息
the_title();
the_content();
}
} else {
// 如果没有符合条件的产品,可以输出相应的提示信息
echo 'No products found.';
}
wp_reset_postdata();
在上述代码中,需要将your_custom_post_type
替换为自定义的帖子类型名称,your_custom_taxonomy
替换为自定义的分类法名称,your_brand_category
替换为特定品牌类别的分类名称。
总结:
通过以上步骤,可以在WordPress自定义帖子类型中获取每个品牌类别的特定产品。通过自定义帖子类型和分类法,以及使用WP_Query类进行查询,可以实现灵活的产品展示和分类功能。
领取专属 10元无门槛券
手把手带您无忧上云