16 lines
297 B
PHP
16 lines
297 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Description Tab
|
||
|
*/
|
||
|
|
||
|
global $woocommerce, $post;
|
||
|
?>
|
||
|
<div class="panel" id="tab-description">
|
||
|
|
||
|
<?php $heading = apply_filters('woocommerce_product_description_heading', __('Product Description', 'woothemes')); ?>
|
||
|
|
||
|
<h2><?php echo $heading; ?></h2>
|
||
|
|
||
|
<?php the_content(); ?>
|
||
|
|
||
|
</div>
|