Last active
December 8, 2023 14:17
-
-
Save SirDarcanos/fed6d32ea3de0d00608b03483848bb7b to your computer and use it in GitHub Desktop.
How to Show the Product Short Description on the Shop Page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'woocommerce_after_shop_loop_item', 'woo_show_excerpt_shop_page', 6 ); | |
function woo_show_excerpt_shop_page() { | |
global $product; | |
echo '<p class="short-description">' . $product->post->post_excerpt . '</p>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment