woocommerce/templates/single-product/tabs/tab-description.php

16 lines
417 B
PHP
Raw Normal View History

2012-08-14 18:05:45 +00:00
<?php
/**
* Description tab
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
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 ) : ?>
<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; ?>