在 WooCommerce 中的标题下方显示循环产品类别项目描述

Display loop product category items description below their title in WooCommerce

我想知道如何在 woocommerce shop by category 页面的类别标题下添加类别描述?这是我试过的方法

function woocommerce_after_shop_loop_item_title_short_description() {
    global $product;

    if ( ! $product->post->post_excerpt ) return;
    ?>
    <div itemprop="description">
        <?php echo apply_filters( 'woocommerce_short_description', $product->post->post_excerpt ) ?>
    </div>
    <?php
}
add_action('woocommerce_after_shop_loop_item_title', 'woocommerce_after_shop_loop_item_title_short_description', 5);

但这并没有在商店页面的类别标题下显示猫的描述。如有任何帮助,我们将不胜感激。

要在标题下方显示循环产品类别项目描述,请使用以下选项之一:

在术语link内:

add_action('woocommerce_after_subcategory_title', 'display_short_description_after_shop_loop_item_title', 10 );
function display_short_description_after_shop_loop_item_title( $category ) {
    if ( $description = $category->description ) {
        echo '<p class="'. $category->slug .' cat-description" itemprop="description">' . $description . '</p>';
    }
}

在link项之外:

add_action('woocommerce_after_subcategory', 'display_short_description_after_shop_loop_item_title', 20 );
function display_short_description_after_shop_loop_item_title( $category ) {
    if ( $description = $category->description ) {
        echo '<p class="'. $category->slug .' cat-description" itemprop="description">' . $description . '</p>';
    }
}

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