Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active October 8, 2024 22:19
Show Gist options
  • Select an option

  • Save woogists/fe7a11074e89130cf794c47837c8fc8f to your computer and use it in GitHub Desktop.

Select an option

Save woogists/fe7a11074e89130cf794c47837c8fc8f to your computer and use it in GitHub Desktop.
Allow shortcodes in product excerpts
/**
* Allow shortcodes in product excerpts
*/
if (!function_exists('woocommerce_template_single_excerpt')) {
function woocommerce_template_single_excerpt( $post ) {
global $post;
if ($post->post_excerpt) echo '<div itemprop="description">' . do_shortcode(wpautop(wptexturize($post->post_excerpt))) . '</div>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment