Code-Snippets-Functions/Execute a function on a child site/WooCommerce/show-meta-description-under-product-title-in-product-category.txt

8 lines
345 B
Text

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 );
}