在产品类别概述的标题下显示 Woocommerce 产品的元描述

show the meta description of a Woocommerce product under the title in the product category overview

我正在搜索一个选项,以在产品类别概述的标题下显示 Woocommerce 产品的元描述。下面的代码在主题的 functions.php 中重复了 SKU 产品的标题。想知道如何用元描述替换它:

add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_after_shop_loop_item_sku_in_cart', 20, 1);
function woocommerce_after_shop_loop_item_sku_in_cart( $template )  {
global $product;
$sku = $product->get_sku();
echo $sku;
}

谢谢

您可以使用 post->post_excerpt 访问简短描述。检查下面的代码。

add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_after_shop_loop_item_sku_in_cart', 20, 1);
function woocommerce_after_shop_loop_item_sku_in_cart( $template )  {
    global $product;
    $sku = $product->get_sku();
    echo $sku;
    echo "</br>";
    echo get_post_meta( $product->get_id(), '_yoast_wpseo_metadesc', true );
}