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.
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'); } }
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.
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' ); } }
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.
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 } }
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’ ); |
Bokep Online says:
Thank sir for you info ..
Togel Sidney says:
Thank you so much
prediksi togel hari ini says:
I like the helpful information you provide in your
obat asam urat says:
thanks for sharing. i like it.
jasa seo says:
Thank you for this tutorial/help thingy. I created what I think should work but then received:
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.â€
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.
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.
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
Beli pulsa online says:
Thanks your sharing
Sb1m says:
Cool stuff man.. Thanks alot
Jual Token Listrik online says:
Thanks, man! Very useful!
Pelangsing Alami Detox says:
Great! Thanks for sharing the information. That is very helpful for increasing my knowledge in this field.
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.
jasa website sekolah says:
Thanks, very useful.
I am only question, any wordpress plugin for get this customization?
Menu’s aanpassen door klant – redacteur says:
[…] Eerst geef je de editor toegang tot ‘weergave’. En vervolgens geef je editors GEEN toegang tot themes en widgets. Met dank aan: https://sethstevenson.net/customize-the-wordpress-admin-menu-based-on-user-roles/ […]
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’ );
juan says:
Hey it was really helpfull.
Thanks so much.
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.
kalpesh says:
thank you very much
Fahad says:
Thanks for the great contribution.The one i was looking for.
Manuel says:
Very very useful. Thanks a lot Seth.
Joseph says:
Thank you for this contribution.
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.
Jervis Thompson says:
You sir.. Are Awesome! Thanks for the detailed tutorial.
Seth Stevenson says:
You’re welcome!
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?
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.
podiatry898 says:
any individual have any info?
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/ […]
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.
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.
Seth Stevenson says:
Jonsey give Adminize a shot – http://wordpress.org/extend/plugins/adminimize/
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.
Mozart says:
Thanks, man! Very useful!
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 […]
David says:
Very strange i cant seem to remove the users menu .. any idea?
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’ );
Ben Lacey says:
Nice collection of functions here. I might use these for future WordPress sites 🙂
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
Chritchan says:
OMG ! Realy need this, Great tutorial !
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
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…
Trent - Wordpress Consultant says:
Great work on this! Just the plugin I was looking for to customize the WordPress admin area. Thanks!
sebin says:
Thanks a lot!!!
Really useful stuff
sebin says:
Thanks a lot!!!
Really usefull stuff
ferry says:
hey thanks, i really need this,why you dont make plugin for this function,..
Seth Stevenson says:
I might someday. I know there are some out there right now, probably one of the best is Admin Menu Editor Pro ($10) – http://wpplugins.com/plugin/146/admin-menu-editor-pro/
They have a free version but I don’t think it has access rights.