Wordpress: rename Toolbar link

生来就可爱ヽ(ⅴ<●) 提交于 2020-12-15 06:44:37

问题


I need to rename a Toolbar link, take a look at the capture to see what I mean.

I found this line of code to remove a link $wp_adminbar->remove_node('wp-logo');

But nothing to 'rename'.


回答1:


From this question How rename a plugin title > Wordpress > Dashboard

You may use the gettext WordPress filter to achieve rename your menu in your plugin or theme functions.php file:

function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
    case 'Copy to a new draft' :
        $translated_text = 'CLONE';
        break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );


来源:https://stackoverflow.com/questions/63129650/wordpress-rename-toolbar-link

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!