mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://stackoverflow.com/questions/63755405/how-to-display-description-on-woocommerce-featured-products
9 lines
426 B
Text
9 lines
426 B
Text
add_action('woocommerce_shop_loop_item_title', 'description_after_related_product_title', 15 );
|
|
function description_after_related_product_title(){
|
|
global $woocommerce_loop, $product;
|
|
|
|
// Only for related products: Display product description
|
|
if( isset($woocommerce_loop['name']) && 'related' === $woocommerce_loop['name'] ) {
|
|
echo '<p class="description">' . $product->get_description() . '</p>';
|
|
}
|
|
}
|