在 Woocommerce Storefront 的 "Shop By Category" 部分显示主要类别的子类别
Show subcategories of a main category in "Shop By Category" section in Woocommerce Storefront
我正在使用店面主题设置 Woocommerce 商店,我想知道如何在“按类别购物”主页部分显示子类别而不是类别?
我需要显示产品子类别,因为我的根产品类别是唯一的(“集合”),并且其中包含所有主要子类别。
实际上您只能显示一个父类别术语 ID 的子类别,您的 "Collection" 产品类别就是这种情况:
add_filter( 'storefront_product_categories_args', 'custom_storefront_product_categories_args');
function custom_storefront_product_categories_args( $args ) {
$args['columns'] = 4; // 4 columns
$args['limit'] = 8; // 8 items on 2 rows
$args['child_categories'] = '18'; // <= The term ID of the main parent category
return $args;
}
代码进入活动子主题(或活动主题)的 function.php 文件。已测试并有效。
店面主页相关:
我正在使用店面主题设置 Woocommerce 商店,我想知道如何在“按类别购物”主页部分显示子类别而不是类别?
我需要显示产品子类别,因为我的根产品类别是唯一的(“集合”),并且其中包含所有主要子类别。
实际上您只能显示一个父类别术语 ID 的子类别,您的 "Collection" 产品类别就是这种情况:
add_filter( 'storefront_product_categories_args', 'custom_storefront_product_categories_args');
function custom_storefront_product_categories_args( $args ) {
$args['columns'] = 4; // 4 columns
$args['limit'] = 8; // 8 items on 2 rows
$args['child_categories'] = '18'; // <= The term ID of the main parent category
return $args;
}
代码进入活动子主题(或活动主题)的 function.php 文件。已测试并有效。
店面主页相关: