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

16 lines
231 B
PHP
Raw Normal View History

2011-12-11 01:08:33 +00:00
<?php
/**
* Single Product Short Description
*/
global $post;
?>
<?php if ($post->post_excerpt) : ?>
<div itemprop="description">
<?php echo apply_filters( 'the_content', $post->post_excerpt ) ?>
2011-12-11 01:08:33 +00:00
</div>
<?php endif; ?>