woocommerce/templates/single-product/short-description.php

18 lines
375 B
PHP
Raw Normal View History

2011-12-11 01:08:33 +00:00
<?php
/**
2012-08-14 18:05:45 +00:00
* Single product short description
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
2011-12-11 01:08:33 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2011-12-11 01:08:33 +00:00
global $post;
2012-04-12 16:22:56 +00:00
if ( ! $post->post_excerpt ) return;
?>
<div itemprop="description">
<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?>
</div>