woocomerce-显示类别中的产品

问题描述 投票:0回答:1

我正在创建一家商店。我有很多类别,例如:

cat1(1)– cat1.1(3)– cat1.1.1(2)

如果我转到cat1,我只想显示此类别中的1个产品,而不是cat1.1和cat1.1.1中的产品,并且我想显示cat.1.1

对于cat 1.1,我想显示3个产品和cat1.1.1

我该怎么做?它应该是动态的

wordpress woocommerce categories
1个回答
0
投票

放入functions.php文件中

function excludeChildCategory($wp_query) 
{
    if (isset($wp_query->query_vars['product_cat']) && $wp_query->is_main_query()) 
    {
        $wp_query->set('tax_query', array(
                array (
                    'taxonomy' => 'product_cat',
                    'terms' => $wp_query->query_vars['product_cat'],
                    'field' => 'slug',
                    'include_children' => false
                )
            )
        );
      }
}
add_filter('pre_get_posts', 'excludeChildCategory');
© www.soinside.com 2019 - 2024. All rights reserved.