woocommerce_template_single_excerpt()
Output the product short description (excerpt).
Хуков нет.
Возвращает
null. Ничего (null).
Использование
woocommerce_template_single_excerpt();
Код woocommerce_template_single_excerpt() woocommerce template single excerpt WC 10.5.2
function woocommerce_template_single_excerpt() {
if ( ! isset( $GLOBALS['post']->post_excerpt ) ) {
return;
}
wc_get_template( 'single-product/short-description.php' );
}