Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Created July 30, 2021 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save SiR-DanieL/fab0d06aa58c9244aa6d0df4d34cf685 to your computer and use it in GitHub Desktop.
Save SiR-DanieL/fab0d06aa58c9244aa6d0df4d34cf685 to your computer and use it in GitHub Desktop.
/**
* 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