mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/68654083/show-the-meta-description-of-a-woocommerce-product-under-the-title-in-the-produc
8 lines
345 B
Text
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 );
|
|
}
|