
應該是中文翻譯的問題,很多都是水土不服,比如是像是 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) 文件中即可。