New Link Boundaries
Category: Wordpress
How to rename the WooCommerce Product tabs?
add_filter( 'woocommerce_product_tabs', 'ws_woo_rename_tab', 98);
function ws_woo_rename_tab($tabs) {
$tabs['description']['title'] = __( 'Additional information' );
return $tabs;
}