在 WooCommerce 子类别存档页面上显示子子类别术语列表

Display sub subcategories terms list on WooCommerce subcategory archive pages

在 Woocommerce 中,我使用 回答功能,在父类别页面上显示子类别列表

但我只需要将其应用于特定的产品类别,并且使用带有类别 ID 预感的数组似乎并不理想。

我只需要在第一个子类别上显示列表,例如我的主要父类别之一是“服装”,然后是子类别“衬衫”,然后是子类别“无袖”。我只需要在第一个子类别中显示它,在本例中为“衬衫”。

要仅在主要类别存档页面上显示第一个子类别,请仅使用:

add_action('woocommerce_before_shop_loop', 'display_sub_subcategories', 10 );
function display_sub_subcategories() {
    $obj      = get_queried_object();
    $taxonomy = 'product_cat';

    if ( is_a($obj, 'WP_Term') && $taxonomy === $obj->taxonomy && 0 != $obj->parent ) {
        // Get sub-subcategories of the current subcategory
        $terms = get_terms([
            'taxonomy'    => $taxonomy,
            'hide_empty'  => true,
            'parent'      => $obj->term_id
        ]);

        if ( ! empty($terms) ) :

        $output = '<ul class="subcategories-list">';

        // Loop through product subcategories WP_Term Objects
        foreach ( $terms as $term ) {
            $term_link = get_term_link( $term, $taxonomy );

            $output .= '<li class="'. $term->slug .'"><a href="'. $term_link .'">'. $term->name .'</a></li>';
        }

        echo $output . '</ul>';
        endif;
    }
}