wordpress重新排列后台管理菜单


wordpress默认情况下后台的菜单列表如下图所示:
admin-menu
但是我们在使用wordpress后台管理网站的时候,有些菜单选项并不是经常会用到的,比如“多媒体”菜单,儿相对于“页面”菜单我们又经常用到,那么如何重新排列wordpress的后台菜单管理项呢?方法如下:
在你主题的的functions.php文件中添加如下代码:

  1. /**
  2. * 重新排列wordpress后台菜单管理项,此函数放置于你主题的functions.php文件中
  3. */
  4.  
  5. function gs_custom_menu_order($menu_ord) {
  6. if (!$menu_ord) return true;
  7. return array(
  8. 'index.php',
  9. 'separator1',
  10. 'edit.php?post_type=page',
  11. 'edit.php',
  12. );
  13.  
  14. /* -- 默认参数列表 -- */
  15.  
  16. /*
  17. return array(
  18. 'index.php',
  19. 'separator1',
  20. 'edit.php?post_type=page', 
  21. 'edit.php', 
  22. 'edit.php?post_type=[your_post_type_slug]',
  23. 'upload.php',
  24. 'link-manager.php',
  25. 'edit-comments.php',
  26. 'separator2',
  27. 'themes.php',
  28. 'plugins.php',
  29. 'users.php',
  30. 'tools.php',
  31. 'options-general.php'
  32. );
  33. */
  34. }
  35. add_filter('custom_menu_order', 'gs_custom_menu_order');
  36. add_filter('menu_order', 'gs_custom_menu_order');

重新排列后的后台管理菜单如下图:
admin-menu-2
参数说明:

  • 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后台的默认管理菜单列表,你可以根据自己的喜好来设置他们的排列顺序。