2012-08-14 18:05:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Description tab
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 1.6.4
|
|
|
|
*/
|
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2012-08-14 18:05:45 +00:00
|
|
|
global $post;
|
2012-04-03 09:34:02 +00:00
|
|
|
|
|
|
|
if ( $post->post_content ) : ?>
|
2012-10-16 09:45:33 +00:00
|
|
|
<li class="description_tab"><a href="#tab-description"><?php echo apply_filters('woocommerce_product_description_tab_title', __( 'Description', 'woocommerce' )) ?></a></li>
|
2012-04-03 09:34:02 +00:00
|
|
|
<?php endif; ?>
|