woocommerce_template_single_excerpt()
Output the product short description (excerpt).
No Hooks.
Returns
null
. Nothing (null).
Usage
woocommerce_template_single_excerpt();
woocommerce_template_single_excerpt() woocommerce template single excerpt code WC 9.8.4
function woocommerce_template_single_excerpt() { if ( ! isset( $GLOBALS['post']->post_excerpt ) ) { return; } wc_get_template( 'single-product/short-description.php' ); }