您可以使用自定义functions.php 主题文件夹中的文件。如果文件名为函数。php已经存在,那么您可以使用以下公式。还可以创建函数。如果主题根文件夹中不存在php文件,请自行将其保存在该文件夹中。
<?php
/*
Functions.php file
Description: Site specific codes and functions
*/
function fix_woocommerce_strings( $translated, $text, $domain ) {
// STRING 1
$translated = str_ireplace( \'Shipping\', \'Delivery\', $translated );
return $translated;
}
add_filter( \'gettext\', \'fix_woocommerce_strings\', 999, 3 );
//EOF
?>