我们在使用wordpress后台管理网站的时候,有些菜单选项并不是经常会用到的,比如“多媒体”菜单,而相对于“文章”菜单我们又经常用到,那么如何重新排列wordpress的后台菜单管理项呢?方法如下:
在主题的的functions.php文件中添加如下代码:
/**
* 重新排列wordpress后台菜单管理项,此函数放置于主题的functions.php文件中
*/
function gs_custom_menu_order($menu_ord) {
if (!$menu_ord) return true;
return array(
'index.php',
'separator1',
'edit.php?post_type=page',
'edit.php',
);
/* -- 默认参数列表 -- */
/*
return array(
'index.php',
'separator1',
'edit.php?post_type=page',
'edit.php',
'edit.php?post_type=[your_post_type_slug]',
'upload.php',
'link-manager.php',
'edit-comments.php',
'separator2',
'themes.php',
'plugins.php',
'users.php',
'tools.php',
'options-general.php'
);
*/
}
add_filter('custom_menu_order', 'gs_custom_menu_order');
add_filter('menu_order', 'gs_custom_menu_order');
参数说明:
- index.php:仪表盘,
- separator1:第一菜单栏分割线,
- edit.php?post_type=page:页面,
- edit.php:文章,
- edit.php?post_type=[your_post_type_slug]:自定义类型的文章编辑菜单(如:page等),
- upload.php:多媒体,
- link-manager.php:链接,
- edit-comments.php:评论,
- separator2:第二菜单栏分割线,
- themes.php:主题,
- plugins.php:插件,
- users.php:用户,
- tools.php:工具,
- options-general.php:设置
以上参数对应的是wordpress后台的默认管理菜单列表,可以根据自己的喜好来设置他们的排列顺序。
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505