获取 Woocommerce 档案中当前产品类别的子类别

Get the subcategories of the current product category in Woocommerce archives

我正在尝试像这样在 Woocommerce 中的当前类别下显示子类别(不是子子类别等):http://www.qs-adhesivos.es/app/productos/productos.asp?idioma=en

例如,建筑是类别,密封剂和粘合剂、防水材料、聚氨酯泡沫……是子类别。

密封胶和胶粘剂是类别,醋酸硅酮密封胶、中性硅酮密封胶、丙烯酸密封胶……是子类别……

我的子主题下的 woocommerce 文件夹中已经有一个存档-product.php。

已经尝试了一些代码并且它适用,但这不是我想要的。

以下代码将显示产品类别存档页面的当前产品类别中格式化的链接产品子类别:

if ( is_product_category() ) {

    $term_id  = get_queried_object_id();
    $taxonomy = 'product_cat';

    // Get subcategories of the current category
    $terms    = get_terms([
        'taxonomy'    => $taxonomy,
        'hide_empty'  => true,
        'parent'      => get_queried_object_id()
    ]);

    $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>';
}

已测试并有效。


用法示例:

1) 您可以直接在archive-product.php模板文件中使用此代码。

2) 可以将代码嵌入到函数中,将最后一行echo $output . '</ul>';替换为return $output . '</ul>';,至于短代码,总是返回显示。

3) 您可以使用 woocommerce_archive_description:

等操作挂钩嵌入代码
// Displaying the subcategories after category title
add_action('woocommerce_archive_description', 'display_subcategories_list', 5 ); 
function display_subcategories_list() {
    if ( is_product_category() ) {

        $term_id  = get_queried_object_id();
        $taxonomy = 'product_cat';

        // Get subcategories of the current category
        $terms    = get_terms([
            'taxonomy'    => $taxonomy,
            'hide_empty'  => true,
            'parent'      => $term_id
        ]);

        echo '<ul class="subcategories-list">';

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

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

        echo '</ul>';
    }
}

代码进入您的活动子主题(或活动主题)的 functions.php 文件。已测试并有效。


要显示在类别描述之后,将hook优先级由5改为20 :

add_action('woocommerce_archive_description', 'display_subcategories_list', 5 ); 

喜欢:

add_action('woocommerce_archive_description', 'display_subcategories_list', 20 );