更改wordpress管理区域中的菜单项标签?

时间:2010-12-02 21:43:54

标签: wordpress wordpress-theming

有没有办法更改管理区域内菜单项的标签?就像当您为其指定每个标签时注册新的自定义帖子类型时,但是对于默认菜单项。

提前致谢!

4 个答案:

答案 0 :(得分:13)

add_filter( 'gettext', 'change_post_to_article' );
add_filter( 'ngettext', 'change_post_to_article' );

function change_post_to_article( $translated ) 
{  
    $translated = str_replace( 'Post', 'Article', $translated );
    $translated = str_replace( 'post', 'article', $translated );
    return $translated;
}

还有另一种方法可以执行此操作,有关详细信息,请查看此answer

答案 1 :(得分:5)

最佳解决方案就是这样,只需写入您的functions.php或插件文件

即可
function change_post_menu_label() {
    global $menu;
    global $submenu;
    $menu[70][0] = 'Articles';
    $submenu['user-edit.php'][5][0] = 'Articles';
    $submenu['user-edit.php'][10][0] = 'Add Articles';
    echo '';
}
function change_post_object_label() {
        global $wp_post_types;
        $labels = &$wp_post_types['users']->labels;
        $labels->name = 'Articles';
        $labels->singular_name = 'Article';
        $labels->add_new = 'Add Article';
        $labels->add_new_item = 'Add Article';
        $labels->edit_item = 'Edit Article';
        $labels->new_item = 'Article';
        $labels->view_item = 'View Article';
        $labels->search_items = 'Search Articles';
        $labels->not_found = 'No Articles found';
        $labels->not_found_in_trash = 'No Articles found in Trash';
}
add_action( 'init', 'change_post_object_label' );
add_action( 'admin_menu', 'change_post_menu_label' );

答案 2 :(得分:2)

仅供参考,我当前公司博客上对该代码的更新参考:http://www.get10up.com/blog/2011/03/customizing-wordpress-admin/

您可以在PHP5中使用str ireplace来避免两次调用。

答案 3 :(得分:0)

//将插件重命名为Apps Store

function rename_plugin_menu() {  
    global $menu;       
    $menu[65][0] = 'Apps Store'; // Change Users to Customers main id
}  
add_action( 'admin_menu', 'rename_plugin_menu' );