这是我的网站:http ://bmi.brownsmedicalimaging.com/product-category/c-arm/
我创建了一个名为“产品”的自定义帖子类型。然后我创建了 2 个自定义分类法:类别和制造商。例如,如果我正在查看上面的“C 型臂”类别页面,它会显示该类别的 2 篇帖子。我怎样才能让它显示该类别的制造商列表?现在它只输出我定义的所有制造商。这是我的代码:
add_shortcode( 'my_cat_list', 'my_list_categories_shortcode' );
/**
* this function outputs your category list where you
* use the [my_cat_list] shortcode.
*/
function my_list_categories_shortcode() {
$args = array(
'echo' => false,
'taxonomy' => 'product-manufacturer',
'title_li' => '',
);
return wp_list_categories( $args );
}
肥皂起泡泡