Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created March 12, 2016 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikejolley/6ce453b113cf29edd883 to your computer and use it in GitHub Desktop.
Save mikejolley/6ce453b113cf29edd883 to your computer and use it in GitHub Desktop.
Show excerpt in shop loop
// code added to theme functions.php file
add_action( 'woocommerce_after_shop_loop_item', 'show_product_excerpt' );
function show_product_excerpt() {
the_excerpt();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment