mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
6 lines
288 B
Text
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>';
|
|
}
|
|
}
|