How to change menu labels

时间:2018-07-14 作者:William Jerome

更改管理菜单标签的最佳方法是什么?作为修改管理区域的第一步,我想知道如何更改WooCommerce 标签收件人Shop?

2 个回复
最合适的回答,由SO网友:Castiblanco 整理而成

要更改菜单标签,您必须将此代码添加到functions.php:

add_filter( \'gettext\', \'change_woocommerce_text\' );

function change_woocommerce_text( $translated ) 
{  
    $translated = str_replace( \'WooCommerce\', \'Store\', $translated );
    return $translated;
}
已测试。

SO网友:Quang Hoang

你可以试试这个。(示例:我已将标签“Post”更改为“Articles”)

add_action( \'admin_menu\', \'custom_change_admin_label\', 99);
function custom_change_admin_label() {
    global $menu;
    //global $submenu;
    $menu[5][0] = \'Articles\';
}
屏幕截图:http://nimb.ws/jiIC91

结束

相关推荐

如何在我的根域上组合WordPress htaccess+在子文件夹上组合php

我为一个看似重复的问题道歉,但我所看到的几十个问题中,没有一个是同样的问题。我有以下目录结构:/.htaccess /index.php /subfolder/.htaccess /subfolder/index.php 我希望所有页面请求都由/index.php, 除非请求启动/subfolder 在这种情况下,应由/subfolder/index.php.e、 g。/abc 将重写为/subfolder/abce、 g。/subfolder/def 将重写为/subf