首页 > 解决方案 > 如何更改 Woocommerce 管理员面包屑链接标题

问题描述

我试过像这样在function.php中添加gettext,

add_filter(  'gettext',  'wps_translate_words_array'  );
add_filter(  'ngettext',  'wps_translate_words_array'  );
function wps_translate_words_array( $translated ) {

     $words = array(
            // 'word to translate' = > 'translation'
            'WooCommerce' => 'Home',
     );

     $translated = str_ireplace(array_keys($words), $words, $translated );
     return $translated;
}

但它不起作用!

在此处输入图像描述

标签: wordpresswoocommercehook-woocommerce

解决方案


推荐阅读