如何在WooCommerce中本地化定制费用标签?

2022-05-13 00:00:00 localization php wordpress woocommerce cart

我需要在WordPress中做一些工作。我设法增加了结账费用

$woocommerce->cart->add_fee( 'thebestcompany_service', $fee, true, 'standard' );

那太好了。我设法创建了一个插件。太好了。我设法用本地翻译翻译了我的插件。太棒了。

但我现在不知道在哪里折算费用thebestcompany_service

插件翻译、主题翻译或WooCommerce插件翻译中没有这样的字符串。请帮帮忙。


解决方案

若要使该字符串在您的函数中可翻译,您需要使用a translatable function方法:

$fee_label = __( 'The best company service', 'domain_name' );
// Or (without domain name):
// $fee_label = __( 'The best company service' );

$woocommerce->cart->add_fee( $fee_label, $fee, true, 'standard' );
如果'domain_name'必须替换为活动主题域插件或插件域插件,则本地翻译程序将使用。

现在应该可以使用

相关文章