Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Created September 8, 2015 04:33
Show Gist options
  • Save thecodepoetry/bdbdd6d8579c62118d16 to your computer and use it in GitHub Desktop.
Save thecodepoetry/bdbdd6d8579c62118d16 to your computer and use it in GitHub Desktop.
Add product description on shop page
add_action( 'woocommerce_after_shop_loop_item_title', 'dt_woocommerce_product_excerpt', 35, 2);
function dt_woocommerce_product_excerpt()
{
echo '<span class="excerpt">';
the_excerpt();
echo '</span>';
}
@thecodepoetry
Copy link
Author

Try this code in functions.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment