首页 文章

WooCommerce存档页面在产品 Headers 之前添加类别

提问于
浏览
-1

我应该在Woocommerce存档页面的 Headers 之前显示产品的类别,如图中所示 . 我怎样才能做到这一点?

enter image description here

1 回答

  • 0

    您可以使用以下示例在 Headers 上方添加类别 . 这个函数将进入子主题functions.php或父主题functions.php

    /**
    * @return add category link and title above the title or below the category
    *
    */
    function theme_slug_add_category_above_title() {
        global $product;
        echo wc_get_product_category_list( $product->get_id() );
    }
    add_action( 'woocommerce_shop_loop_item_title', 'theme_slug_add_category_above_title', 9 );
    

    您可以在woocommerce / templates / content-product.php上获得与产品列表相关的所有挂钩列表,并可以在woocommerce / templates / single-product / meta.php中看到 wc_get_product_category_list() 的使用

    谢谢

相关问题