short-description check
Apply woocommerce_short_description filter before check if excerpt is empty; Per new Woo template files;
This commit is contained in:
parent
da3cdfa847
commit
0ee0b8a44f
|
@ -22,11 +22,13 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||||
|
|
||||||
global $post;
|
global $post;
|
||||||
|
|
||||||
if ( ! $post->post_excerpt ) {
|
$short_description = apply_filters( 'woocommerce_short_description', $post->post_excerpt );
|
||||||
|
|
||||||
|
if ( ! $short_description ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<div itemprop="description" class="lead">
|
<div class="woocommerce-product-details__short-description">
|
||||||
<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?>
|
<?php echo $short_description; // WPCS: XSS ok. ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in New Issue