在Woocommerce店面的“按类别购物”部分中显示主要类别的子类别

时间:2019-03-26 22:23:33

标签: php wordpress woocommerce storefront taxonomy-terms

我正在使用店面主题设置Woocommerce商店,我想知道如何显示子类别而不是“按类别购物”主页部分中的类别?

我需要显示产品子类别,因为我的根产品类别是唯一的类别(“集合”),并且其中包含所有主要子类别。

我的网站是:www.thomassi.com

1 个答案:

答案 0 :(得分:0)

实际上,您只能显示一个父类别术语ID的子类别,“收藏”产品类别就是这种情况:

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文件中。经过测试,可以正常工作。


与店面房屋相关:Customize displayed products on Woocommerce Storefront home page