在(每个)类别页面的WooCommerce产品类别小部件中显示(相关)父级和子类别

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

当在产品(和子级)类别页面和商店页面中同时使用条件标签(is_product_category)时,我无法应用以下代码。

希望任何人都可以提供帮助。

我的目标:每个产品类别页面(包括父子类别页面),小部件显示所有父子(语义相关)产品类别(隐藏在小部件中的不相关产品类别)。

同时参考code snippetscode snippets

//* Used when the widget is displayed as a dropdown
add_filter('woocommerce_product_categories_widget_dropdown_args', 'appliances', 10, 10);
//* Used when the widget is displayed as a list
add_filter('woocommerce_product_categories_widget_args', 'appliances', 10, 10);
function appliances($cat_args) {
  if (is_product_category(75) || is_product_category($termchildren)) {
    // Create an array that will hold the ids that need to be included
    $include_terms = array();
    // Push the default term that you need to shown 
    array_push($include_terms, 75);
    // Create an array that will hold the ids that need to be included
    $termchildren = get_term_children(75, 'product_cat');
    }
  if (is_product_category(59) || is_product_category($termchildren)) {
    // Create an array that will hold the ids that need to be included
    $include_terms = array();
    // Push the default term that you need to shown 
    array_push($include_terms, 59);
    // Create an array that will hold the ids that need to be included
    $termchildren = get_term_children(59, 'product_cat');
    }
    foreach($termchildren as $child) {
      $term = get_term_by('id', $child, 'product_cat');
      array_push($include_terms, $term - > term_id);
    }
    // Finally pass the array
    $cat_args['include'] = $include_terms;
  }
  return $cat_args;
}
woocommerce code-snippets
1个回答
0
投票

经过数天的反复试验,以下是对我有用的代码片段:

  1. 使用了多个条件标签;
  2. 但是不知道如何为(如果)已检查的下拉产品类别窗口小部件添加另一个过滤器woocommerce_product_categories_widget_dropdown_args;

希望在这里帮助任何人,并希望有人可以改善这个答案。

//* Used when the widget is displayed as an slug (aabc) / term_id (50) lists
add_filter( 'woocommerce_product_categories_widget_args', function ( $cat_args ) {
if ( is_product_category('aabc') || is_product_category('ddef') || is_product_category('gghi') || is_product_category('jjkl') || is_product_category('mmno') || is_product_category('ppqr') || is_product_category('sstu') || is_product_category('vvwx') || is_product_category('yyz')){
        // Create an array that will hold the ids that need to be included
        $include_terms = array();
        // Push the default term that you need to hide 
        array_push( $include_terms, 50 );
        // Create an array that will hold the ids that need to be included
        $termchildren = get_term_children( 50, 'product_cat' );
        // Iterate over the terms found and add it to the array which holds the IDs to include
        foreach( $termchildren as $child ) {
            $term = get_term_by( 'id', $child, 'product_cat' );     
            array_push( $include_terms, $term->term_id );
            }
        // Finally pass the array
        $cat_args['include'] = $include_terms;
    }   
        return $cat_args;
    });
//* Used when the widget is displayed as an slug (abc) / term_id (60) lists
add_filter( 'woocommerce_product_categories_widget_args', function ( $cat_args ) {
if ( is_product_category('abc') || is_product_category('def') || is_product_category('ghi') || is_product_category('jkl') || is_product_category('mno') || is_product_category('pqr') || is_product_category('stu') || is_product_category('vwx') || is_product_category('yz')){
        // Create an array that will hold the ids that need to be included
        $include_terms = array();
        // Push the default term that you need to hide 
        array_push( $include_terms, 60 );
        // Create an array that will hold the ids that need to be included
        $termchildren = get_term_children( 60, 'product_cat' );
        // Iterate over the terms found and add it to the array which holds the IDs to include
        foreach( $termchildren as $child ) {
            $term = get_term_by( 'id', $child, 'product_cat' );     
            array_push( $include_terms, $term->term_id );
            }
        // Finally pass the array
        $cat_args['include'] = $include_terms;
    }   
        return $cat_args;
    });
© www.soinside.com 2019 - 2024. All rights reserved.