Code-Snippets-Functions/Execute a function on a child site/WooCommerce/allow-shortcodes-in-product-excerpts.txt

6 lines
288 B
Text

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>';
}
}