Woocommerce Woocommerce 修改“Related Products”文字内容

Woocommerce Woocommerce 修改“Related Products”文字内容

有时候我们希望把“Related Products”文字改成其他文字,最直接的方式是通过poedit修改翻译文件,但是很多用户不会,今天WordPress外贸建站 给大家代码 直接在后台functions.php添加代码修改替换“Related Products”的方法。

方法

后台–>外观–>主题编辑器–>functions.php最下方添加上以下代码

// Change WooCommerce "Related products" text

add_filter('gettext', 'change_rp_text', 10, 3);
add_filter('ngettext', 'change_rp_text', 10, 3);

function change_rp_text($translated, $text, $domain)
{
     if ($text === 'Related products' && $domain === 'woocommerce') {
         $translated = esc_html__('这里换成你要替换的文字内容', $domain);
     }
     return $translated;
}

上面的不行就使用下面这一段代码

function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Related products' :
$translated_text = __( '你要替换的文字内容给', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );

 

1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,请不要用于商业用途!
3. 如果你也有好源码或者教程,可以到审核区发布,分享有金币奖励和额外收入!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 如遇到加密压缩包,默认解压密码为"Yongwp.com",如遇到无法解压的请联系管理员!
WordPress外贸建站 » Woocommerce Woocommerce 修改“Related Products”文字内容

查看优质的WP整站案例

立即查看 联系我们