我已经使用它来将描述标签重命名为“更多信息”
但是它不起作用,我该怎么办?
我使用带有预订扩展名的Woocommerce版本3.4.3
<?php
add_filter( 'woocommerce_product_tabs', 'woo_customize_tabs', 100, 1
);
function woo_customize_tabs( $tabs ) {
unset($tabs['reviews']); // Remove the reviews tab
$tabs['description']['title'] = __( 'More Information' ); // Rename the
description tab
return $tabs;
}