Created
July 30, 2021 03:39
-
-
Save SirDarcanos/fab0d06aa58c9244aa6d0df4d34cf685 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/** | |
* Plugin Name: Show Short Description on the Shop Page | |
* Plugin URI: https://nicolamustone.blog/2016/12/01/show-products-short-description-shop-page/#comment-2119 | |
* Description: Shows the product's short description on the shop page with WooCommerce. | |
* Version: 1.0 | |
* Author: Nicola Mustone | |
* Author URI: https://nicolamustone.blog | |
*/ | |
add_action( 'woocommerce_after_shop_loop_item', 'woo_show_excerpt_shop_page', 5 ); | |
function woo_show_excerpt_shop_page() { | |
global $product; | |
echo $product->post->post_excerpt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment