网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > 网络知识 > 正文

wordpress菜单名称重命名

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/06/29

鉴于大家对网络知识十分关注,我们编辑小组在此为大家搜集整理了“wordpress菜单名称重命名”一文,供大家参考学习

  WordPress系统源于一个blog平台,慢慢地发展到今天的这样一个功能强大的cms系统!

  尽管如此,但是wordpress默认情况下文章页英文叫post, page,有时候,我们开发的时候,也许并不想要这个菜单还是显示着post,和page,也许你想要显示为其它的名称,比如“产品”,”联系人”亦或是其它的名称!

  当然我们可以自己写一个post type,移除原来的文章类型,新建的的内容类型可以自己命名,但是其实我们还有一个更好的方法对原来系统的内容类型菜单名称进行重命名:

  看下面的一个国外的高手的代码:

<?php 
function change_post_menu_label() {
global $menu;
global $submenu;
$menu[5][0] = ''Contacts'';
$submenu[''edit.php''][5][0] = ''Contacts'';
$submenu[''edit.php''][10][0] = ''Add Contacts'';
$submenu[''edit.php''][15][0] = ''Status''; // Change name for categories
$submenu[''edit.php''][16][0] = ''Labels''; // Change name for tags
echo '''';
}

function change_post_object_label() {
global $wp_post_types;
$labels = &$wp_post_types[''post'']->labels;
$labels->name = ''Contacts'';
$labels->singular_name = ''Contact'';
$labels->add_new = ''Add Contact'';
$labels->add_new_item = ''Add Contact'';
$labels->edit_item = ''Edit Contacts'';
$labels->new_item = ''Contact'';
$labels->view_item = ''View Contact'';
$labels->search_items = ''Search Contacts'';
$labels->not_found = ''No Contacts found'';
$labels->not_found_in_trash = ''No Contacts found in Trash'';
}
add_action( ''init'', ''change_post_object_label'' );
add_action( ''admin_menu'', ''change_post_menu_label'' );
To change the menu order, go with this:

// CUSTOMIZE ADMIN MENU ORDER
function custom_menu_order($menu_ord) {
if (!$menu_ord) return true;
return array(
''index.php'', // this represents the dashboard link
''edit.php'', //the posts tab
''upload.php'', // the media manager
''edit.php?post_type=page'', //the posts tab
);
}
add_filter(''custom_menu_order'', ''custom_menu_order'');
add_filter(''menu_order'', ''custom_menu_order'');
?>

  这一个代码中就是把原来的文章post的菜单名“post”更改为Contact了!

  参考资料:http://wordpress.stackexchange.com/questions/9211/changing-admin-menu-labels

  原文地址:http://markchen.me/the-wordpress-menu-name-rename/

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号