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