1 回答

TA貢獻(xiàn)1834條經(jīng)驗(yàn) 獲得超8個(gè)贊
gettext您可以這樣使用 WordPress掛鉤:
add_filter('gettext', 'custom_strings_translation', 20, 3);
function custom_strings_translation( $translated_text, $text, $domain ) {
global $pagenow, $typenow;
// Settings
$current_text = "Coupon(s):";
$new_text = "Discount(s):";
// Targeting admin single order pages
if( is_admin() && in_array($pagenow, ['post.php', 'post-new.php']) && 'shop_order' === $typenow && $current_text === $text ){
$translated_text = __( $new_text, $domain );
}
return $translated_text;
}
代碼進(jìn)入活動(dòng)子主題(或活動(dòng)主題)的 functions.php 文件。測(cè)試和工作。
- 1 回答
- 0 關(guān)注
- 203 瀏覽
添加回答
舉報(bào)