19 lines
437 B
PHP
19 lines
437 B
PHP
<?php
|
|
/**
|
|
* Additional Information tab
|
|
*
|
|
* @author WooThemes
|
|
* @package WooCommerce/Templates
|
|
* @version 2.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
global $woocommerce, $post, $product;
|
|
|
|
$heading = apply_filters( 'woocommerce_product_additional_information_heading', __( 'Additional Information', 'woocommerce' ) );
|
|
?>
|
|
|
|
<h2><?php echo $heading; ?></h2>
|
|
|
|
<?php $product->list_attributes(); ?>
|