2011-12-09 22:44:03 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-14 18:05:45 +00:00
|
|
|
* Description tab
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2013-02-10 17:33:13 +00:00
|
|
|
* @version 2.0.0
|
2011-12-09 22:44:03 +00:00
|
|
|
*/
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2014-08-17 20:29:51 +00:00
|
|
|
global $post;
|
2011-12-09 22:44:03 +00:00
|
|
|
|
2014-01-23 04:36:24 +00:00
|
|
|
$heading = esc_html( apply_filters( 'woocommerce_product_description_heading', __( 'Product Description', 'woocommerce' ) ) );
|
2014-09-22 16:37:57 +00:00
|
|
|
|
2013-02-10 17:33:13 +00:00
|
|
|
?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2014-05-06 20:12:09 +00:00
|
|
|
<?php if ( $heading ): ?>
|
|
|
|
<h2><?php echo $heading; ?></h2>
|
|
|
|
<?php endif; ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2014-05-06 20:12:09 +00:00
|
|
|
<?php the_content(); ?>
|