Merge pull request #18231 from woocommerce/fix/18225

Apply woocommerce_short_description filter before check if excerpt is empty
This commit is contained in:
Claudiu Lodromanean 2017-12-19 08:39:25 -08:00 committed by GitHub
commit 2c6a39716f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 7 deletions

View File

@ -10,23 +10,25 @@
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
* @see https://docs.woocommerce.com/document/template-structure/
* @author Automattic
* @package WooCommerce/Templates
* @version 3.3.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
exit; // Exit if accessed directly.
}
global $post;
if ( ! $post->post_excerpt ) {
$short_description = apply_filters( 'woocommerce_short_description', $post->post_excerpt );
if ( ! $short_description ) {
return;
}
?>
<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>