Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save WPprodigy/1c3f1be227ea829f5cd2 to your computer and use it in GitHub Desktop.
Save WPprodigy/1c3f1be227ea829f5cd2 to your computer and use it in GitHub Desktop.
add_action( 'woocommerce_after_shop_loop_item_title', 'wc_ninja_add_short_desc', 15 );
function wc_ninja_add_short_desc() {
global $post;
echo '<p>' . $post->post_excerpt . '</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment