18 lines
368 B
PHP
18 lines
368 B
PHP
<?php
|
|
/**
|
|
* Description Tab
|
|
*/
|
|
|
|
global $woocommerce, $post;
|
|
|
|
if ( $post->post_content ) : ?>
|
|
<div class="panel entry-content" id="tab-description">
|
|
|
|
<?php $heading = apply_filters('woocommerce_product_description_heading', __('Product Description', 'woocommerce')); ?>
|
|
|
|
<h2><?php echo $heading; ?></h2>
|
|
|
|
<?php the_content(); ?>
|
|
|
|
</div>
|
|
<?php endif; ?>
|