<?php
function woocommerce_default_product_tabs( $tabs = array() ) {
global $product, $post;
// Description tab – shows product content
$tabs[‘description’] = array(
‘title’ => __( ‘Description’, ‘woocommerce’ ),
‘priority’ => 10,
‘callback’ => ‘woocommerce_product_description_tab’,
);
return $tabs;
}
?>