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

18 lines
368 B
PHP
Raw Normal View History

2011-12-09 22:44:03 +00:00
<?php
/**
* Description Tab
*/
global $woocommerce, $post;
2012-04-03 09:34:02 +00:00
if ( $post->post_content ) : ?>
<div class="panel entry-content" id="tab-description">
2011-12-09 22:44:03 +00:00
2012-04-03 09:34:02 +00:00
<?php $heading = apply_filters('woocommerce_product_description_heading', __('Product Description', 'woocommerce')); ?>
<h2><?php echo $heading; ?></h2>
<?php the_content(); ?>
2011-12-09 22:44:03 +00:00
2012-04-03 09:34:02 +00:00
</div>
<?php endif; ?>