25 lines
437 B
PHP
25 lines
437 B
PHP
<?php
|
|
/**
|
|
* Description tab
|
|
*
|
|
* @author WooThemes
|
|
* @package WooCommerce/Templates
|
|
* @version 2.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
global $post;
|
|
|
|
$heading = esc_html( apply_filters( 'woocommerce_product_description_heading', __( 'Product Description', 'woocommerce' ) ) );
|
|
|
|
?>
|
|
|
|
<?php if ( $heading ): ?>
|
|
<h2><?php echo $heading; ?></h2>
|
|
<?php endif; ?>
|
|
|
|
<?php the_content(); ?>
|