How to Remove the Theme Editor Menu from the WordPress Dashboard

The WordPress dashboard contains a menu item that allows you to edit any installed WordPress theme under Appearance >> Editor. However, there are times when you may not want anyone poking around in there, since it’s quite easy to make errors that will take the website down entirely.

Here’s a handy snippet to help with this issue, courtesy of Filip Stefansson, creator of WP-Snippets. Simply paste this into your theme’s functions.php file:

1
2
3
4
function remove_editor_menu() {
  remove_action('admin_menu', '_add_themes_utility_last', 101);
}
add_action('_admin_menu', 'remove_editor_menu', 1);

This code will remove the Editor menu from the dashboard so that users cannot accidentally ruin their own website. Save yourself a little bit of trouble if you think this could be a problem and add this short snippet.

Featured Plugin - WordPress Q&A Site Plugin

It's now incredibly easy to start your own Q&A site using nothing more than WordPress - The Q&A plugin simply and brilliantly transforms any site, or page, into a perfect support or Q&A environment.
Find out more

Featured Plugin - WordPress Google Maps Plugin

Simply insert google maps into posts, sidebars and pages - show directions, streetview, provide image overlays and do it all from a simple button and comprehensive widget.
Find out more

Featured Plugin - WordPress Facebook Plugin

Would you like to add Facebook comments, registration, 'Like' buttons and autoposting to your WP site? Well, The Ultimate Facebook plugin has got that all covered!
Find out more

Featured Plugin - WordPress Pop-Up Chat Plugin

No javascript required, no third part chat engine, just fully featured chat right in your own database on your own WP sites - couldn't be easier.
Find out more

Featured Plugin - WordPress Membership Site Plugin

If you're thinking about starting a paid, or just private, membership site then this is truly the plugin you've been looking for. Easy to use, massively configurable and ready to go out of the box!
Find out more

Featured Plugin - WordPress Wiki Plugin

To get a wiki up and running you used to need to install Mediawiki and toil away for days configuring it... not any more! This plugin gives you *all* the functionality you want from a wiki, in WordPress!!!
Find out more

Featured Plugin - WordPress Newsletter Plugin

Now there's no need to pay for a third party service to sign up, manage and send beautiful email newsletters to your subscriber base - this plugin has got the lot.
Find out more

Featured Plugin - WordPress Appointments Plugin

Take, set and manage appointments and client bookings without having to leave WordPress. Appointments+ makes it easy.
Find out more

Featured Plugin - WordPress Ecommerce Shopping Cart Plugin

Out of all the WordPress ecommerce plugins available, MarketPress has got to be the winner - easy to configure, powerful functionality, multiple gateways and more. A simply brilliant plugin!
Find out more

Comments (5)

  1. Great post, but can’t you just use a role plugin manager? I know plugins slow things down, but if you implement this then isn’t everyone blocked from accessing easily form back-end including admin (usually web builder too)?

  2. What about a plugin to hide menu options (theme, editor, plugins etc )from clients and limit users based on roles and capabilities.

    Now that would be a great plugin:)

    Maybe included into your white label branding plugin.

Participate