Customize the WordPress admin menu based on user roles

Categories: ,

WordPress can be a powerful content management system but if you have multiple users often some can end up with permissions that you really wish they didn’t have. There are plenty of plugins that will let you customize user permissions but it’s not that hard to do ourselves by removing certain links from the admin menu for those specific user roles.

Note that this method doesn’t actually remove user permissions but hides the links in the dashboard that would get them there.

Basic example

Add the following to functions.php (or create your own plugin) to remove the “Tools” menu from any user with a role lower than Author.

add_action( 'admin_init', 'my_remove_menu_pages' );

function my_remove_menu_pages() {
	// If the user does not have access to publish posts
	if(!current_user_can('publish_posts')) {
		// Remove the "Tools" menu
		remove_menu_page('tools.php');
	}
}

Removing the Tools menu

You can choose a variety of user levels rather than publish_posts for example edit_users, delete_pages, etc. View a complete list of WordPress roles and capabilities.

The function remove_menu_page() removes a menu item based off of the menu slug you pass it. To figure out that the menu slug was named tools.php I used used Chrome’s developer tools and right clicked on the Tools menu and selected Inspect element. This showed me that the tools menu was linked as <a href="tools.php" tabindex="1">Tools</a>.

To save you the hassle of figuring out each menu slug I listed them below.

Removing sub-menu items

add_action( 'admin_init', 'my_remove_menu_pages' );

function my_remove_menu_pages() {
	// If the user does not have access to add new users
	if(!current_user_can('add_users')) {
		// Remove the "Link Categories" menu under "Links"
		remove_submenu_page( 'link-manager.php', 'edit-tags.php?taxonomy=link_category' );
	}
}

Removing the Tools menu

The function remove_submenu_page() is similar but takes two arguments, the parent menu’s slug and the sub-menu’s slug. Once again you can find the slugs by inspecting each menu link or view the complete list below.

Mixed example

add_action( 'admin_init', 'my_remove_menu_pages' );

function my_remove_menu_pages() {
	if(!current_user_can('add_users')) {
		remove_menu_page('options-general.php'); // Settings
		remove_menu_page('tools.php'); // Tools
		remove_menu_page('upload.php'); // Media

		remove_submenu_page( 'edit.php', 'edit-tags.php?taxonomy=category' ); // Post categories
		remove_submenu_page( 'edit.php', 'edit-tags.php?taxonomy=post_tag' ); // Post tags
	}
}

WordPress admin menu slugs

Dashboard remove_menu_page(‘index.php’);
Dashboard remove_submenu_page( ‘index.php’, ‘index.php’ );
Updates remove_submenu_page( ‘index.php’, ‘update-core.php’ );

Posts remove_menu_page(‘edit.php’);
Posts remove_submenu_page( ‘edit.php’, ‘edit.php’ );
Add New remove_submenu_page( ‘edit.php’, ‘post-new.php’ );
Categories remove_submenu_page( ‘edit.php’, ‘edit-tags.php?taxonomy=category’ );
Post Tags remove_submenu_page( ‘edit.php’, ‘edit-tags.php?taxonomy=post_tag’ );
Media remove_menu_page(‘upload.php’);
Library remove_submenu_page( ‘upload.php’, ‘upload.php’ );
Add New remove_submenu_page( ‘upload.php’, ‘media-new.php’ );
Links remove_menu_page(‘link-manager.php’);
Links remove_submenu_page( ‘link-manager.php’, ‘link-manager.php’ );
Add New remove_submenu_page( ‘link-manager.php’, ‘link-add.php’ );
Link Categories remove_submenu_page( ‘link-manager.php’, ‘edit-tags.php?taxonomy=link_category’ );
Pages remove_menu_page(‘edit.php?post_type=page’);
Pages remove_submenu_page( ‘edit.php?post_type=page’, ‘edit.php?post_type=page’ );
Add New remove_submenu_page( ‘edit.php?post_type=page’, ‘post-new.php?post_type=page’ );
Comments remove_menu_page(‘edit-comments.php’);

Appearance remove_menu_page(‘themes.php’);
Themes remove_submenu_page( ‘themes.php’, ‘themes.php’ );
Widgets remove_submenu_page( ‘themes.php’, ‘widgets.php’ );
Menus remove_submenu_page( ‘themes.php’, ‘nav-menus.php’ );
Editor remove_submenu_page( ‘themes.php’, ‘theme-editor.php’ );
Plugins remove_menu_page(‘plugins.php’);
Plugins remove_submenu_page( ‘plugins.php’, ‘plugins.php’ );
Add New remove_submenu_page( ‘plugins.php’, ‘plugin-install.php’ );
Editor remove_submenu_page( ‘plugins.php’, ‘plugin-editor.php’ );
Users remove_menu_page(‘users.php’);
Users remove_submenu_page( ‘users.php’, ‘users.php’ );
Add New remove_submenu_page( ‘users.php’, ‘user-new.php’ );
Your Profile remove_submenu_page( ‘users.php’, ‘profile.php’ );
Tools remove_menu_page(‘tools.php’);
Tools remove_submenu_page( ‘tools.php’, ‘tools.php’ );
Import remove_submenu_page( ‘tools.php’, ‘import.php’ );
Export remove_submenu_page( ‘tools.php’, ‘export.php’ );
Settings remove_menu_page(‘options-general.php’);
General remove_submenu_page( ‘options-general.php’, ‘options-general.php’ );
Writing remove_submenu_page( ‘options-general.php’, ‘options-writing.php’ );
Reading remove_submenu_page( ‘options-general.php’, ‘options-reading.php’ );
Discussion remove_submenu_page( ‘options-general.php’, ‘options-discussion.php’ );
Media remove_submenu_page( ‘options-general.php’, ‘options-media.php’ );
Privacy remove_submenu_page( ‘options-general.php’, ‘options-privacy.php’ );
Permalinks remove_submenu_page( ‘options-general.php’, ‘options-permalink.php’ );
Comments
  1. Bokep Online says:

    Thank sir for you info ..

  2. Togel Sidney says:

    Thank you so much

  3. prediksi togel hari ini says:

    I like the helpful information you provide in your

  4. obat asam urat says:

    thanks for sharing. i like it.

  5. jasa seo says:

    Thank you for this tutorial/help thingy. I created what I think should work but then received:

  6. jasa seo says:

    Thank you for this tutorial/help thingy. I created what I think should work but then received:
    “The plugin generated 1 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.”

  7. Pulsa says:

    I just read the regularly one particular subject material. Beautiful articles or reviews, thank you to suit downloading and sharing an article content with all of us.

  8. Jasa SEO Murah says:

    Hello! I just would like to give a huge thumbs up for the wonderful information you’ve here on this post. I might be coming back to your blog for alot more soon.

  9. John Miles says:

    Thank you for this tutorial/help thingy. I created what I think should work but then received:
    “The plugin generated 1 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.”
    Any hints where to look for issues of this nature?

    John

  10. Beli pulsa online says:

    Thanks your sharing

    • Sb1m says:

      Cool stuff man.. Thanks alot

  11. Jual Token Listrik online says:

    Thanks, man! Very useful!

  12. Pelangsing Alami Detox says:

    Great! Thanks for sharing the information. That is very helpful for increasing my knowledge in this field.

  13. Cvall says:

    Grande!!, muy completo la información se agradece.

    • Wordpress Jasa SEO says:

      Wow I didnt know wordpress had this. Thanks for revealing this.

  14. jasa website sekolah says:

    Thanks, very useful.
    I am only question, any wordpress plugin for get this customization?

  15. Martin says:

    Hi, sadly didn’t work for me. WordPress 3.7.1 I tried to hide Menu “Your Profile” for everyone accept Admin, but didn’t work out. Any ideas why?

    function my_remove_menu_pages() {
    if(!current_user_can(‘activate_plugins’)) {
    remove_submenu_page( ‘users.php’, ‘profile.php’ );

  16. juan says:

    Hey it was really helpfull.
    Thanks so much.

  17. Roshan says:

    Hi, Seth, great script, i have request, can u provide the code to hide the “publish” button for user roles, ex. hide it for editors, so they can only save as draft.

  18. kalpesh says:

    thank you very much

  19. Fahad says:

    Thanks for the great contribution.The one i was looking for.

  20. Manuel says:

    Very very useful. Thanks a lot Seth.

  21. Joseph says:

    Thank you for this contribution.

  22. steve says:

    Thanks for a great post on this topic, I have two questions:

    1 – How can I remove these pages and sub_pages appearing on the menu_bar (the links I can see on the front end of the site)? They still appear here even though they removed in the backend.

    2 – How can I remove the Header and Background sub_pages from Appearance?

    I’m hoping an answer to these two questions will be helpful to others also.

    • Paal Joachim Romdahl says:

      Hey Steve

      Did you figure this one out? I am also having difficulty removing Header and Background from the Appearance submenu.

  23. Jervis Thompson says:

    You sir.. Are Awesome! Thanks for the detailed tutorial.

    • Seth Stevenson says:

      You’re welcome!

  24. chandan says:

    Why does a slider show up at the bottom of the page ‘https://sethstevenson.net/customize-the-wordpress-admin-menu-based-on-user-roles/’ in firefox 17.0.1?

  25. gaston says:

    hi, i want to remove the sub-item poll-options from poll plugin… any idea?

    • Seth Stevenson says:

      Which poll plugin are you using?

      • John says:

        I think he is using WP-Polls. I have the same query. How can I get rid of some of the submenus? The link is /wp-admin/admin.php?page=wp-polls/polls-options.php. I’ve tried remove_submenu_page(‘wp-polls’, ‘polls-options.php’); and remove_submenu_page(‘admin.php?page=wp-polls’, ‘polls-options.php’); but neither worked.

  26. podiatry898 says:

    any individual have any info?

  27. Hide WordPress admin menus based on user roles « PixelPress Wiki says:

    […] Taken from: https://sethstevenson.net/customize-the-wordpress-admin-menu-based-on-user-roles/ […]

  28. Selectiveform says:

    Does anyone knows how to use these with an array without having to retype the same lines over an over?
    I tried using the following:

    remove_menu_page (array(‘tools.php’,’upload.php’,’themes.php’));

    without success.

  29. Jonsey says:

    Does anyone know a plugin that would do that? I assume you have to repeat this after each upgrade

    • Halley Son says:

      Hi Jonsey, I had the same question as you, and I found this plugin: Hide Admin Menu. It works like a charm, and I just need to check checkboxes :). I also can hide items in admin bar. Give it a look, it’s worth to try.

  30. Sam says:

    I would like to remove themes.php ? I can remove the sub-menu, but it can still be accessed via clicking ‘appearance’ menu.

  31. Mozart says:

    Thanks, man! Very useful!

  32. A complete guide to Wordpress admin menu customization | OCHOLABS says:

    […] the WordPress admin panel for your client. Today’s link will go further on one point : customizing the WordPress admin menu. This complet and detailed guide will give you a few exemples and a big list of the WordPress admin […]

  33. David says:

    Very strange i cant seem to remove the users menu .. any idea?

  34. Thomas says:

    Hi and thanks for this – works great!

    Any idea why

    remove_submenu_page( ‘edit.php’, ‘post-new.php?post_type=listing’ );

    doesn’t remove “add new” from my custom post type menu “listing”?

    Cheers,
    Thomas.

    • Thomas says:

      got it: it has to be

      remove_submenu_page( ‘edit.php?post_type=listing’, ‘post-new.php?post_type=listing’ );

  35. Ben Lacey says:

    Nice collection of functions here. I might use these for future WordPress sites 🙂

  36. Jarski says:

    And what if somebody goes with direct url? I think we need some .htaccess to redirect them.

    • Seth Stevenson says:

      Yes this method doesn’t actually remove the user permissions. For that you might try a plugin like Role Scoper.

      • Anand says:

        Is there another way without plugin

  37. Chritchan says:

    OMG ! Realy need this, Great tutorial !

  38. simon says:

    Thanks for this info.
    How to I remove submenu for custom post_types?
    For example I want to retain the post tags meta box in the admin page but want to remove the ‘Post Tags’ link from the submenu

  39. Zoinks! Graphics says:

    Awesome list, glad you posted it! Do you know if there’s a way to query WP for a list of the menu and submenu slugs, and also plugin menu slugs? I’m worried about hard-coding the slugs in your list, then WP changing them in a few months. So obviously I’d like something future-proof, if that’s possible? Otherwise I’m’a work from your list for now…

  40. Trent - Wordpress Consultant says:

    Great work on this! Just the plugin I was looking for to customize the WordPress admin area. Thanks!

  41. sebin says:

    Thanks a lot!!!
    Really useful stuff

  42. sebin says:

    Thanks a lot!!!
    Really usefull stuff

  43. ferry says:

    hey thanks, i really need this,why you dont make plugin for this function,..

Add Yours
Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Contact Me

How can I help you?

Meta Certified Digital Marketing Associate
Google Ads Certified Professional
Google Analytics Certified Professional
© 2024 Seth Stevenson Marketing. All rights reserved.