应该是中文翻译的问题,很多都是水土不服,比如是像是 WooCommerce 选项卡上的文字,给人感觉特别生硬不舒服。
但都是可以自定义的,所以我们进行了修改。
//重命名其他信息选项卡
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
$tabs['description']['title'] = __( ' 产品描述' ); // Rename the description tab
$tabs['additional_information']['title'] = __( ' 附加信息' ); // Rename the additional information tab
return $tabs;
}
将上面的代码添加到主题的 模板函数 (functions.php) 文件中即可。