2011-12-11 01:08:33 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Single Product Short Description
|
|
|
|
*/
|
|
|
|
|
|
|
|
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>
|