替换“Woo credits”Woocommerce插件中的信用词

时间:2018-02-23 10:37:30

标签: php wordpress plugins woocommerce

使用Woocommerce,我正在使用“Woo credits”插件。我想用其他单词替换每个页面上的“学分”(1学分,2学分)。我该怎么办?

1 个答案:

答案 0 :(得分:0)

在没有任何担保的情况下,您可以尝试使用隐藏在 gettext 过滤器挂钩中的自定义函数,该函数将用任何其他字符串替换“ credit ”你的选择:

add_filter('gettext', 'changing_credits_word', 100, 3 );
function changing_credits_word( $translated_text, $text, $domain ) {
    if( $text === 'credits' ) {
        $translated_text =  __( 'ducks', $domain ); // The replacement text
    }
    return $translated_text;
}

代码放在活动子主题(或主题)的function.php文件中。

未经测试,它可能有用。