Skip to content

Instantly share code, notes, and snippets.

@ajitbohra
Created August 20, 2015 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajitbohra/3861bd35c01260e02474 to your computer and use it in GitHub Desktop.
Save ajitbohra/3861bd35c01260e02474 to your computer and use it in GitHub Desktop.
Remove Theme Editor from Appreances
<?php
/*
* Remove theme editor from backend
*/
function remove_editor_menu() {
remove_action('admin_menu', '_add_themes_utility_last', 101);
}
add_action('_admin_menu', 'remove_editor_menu', 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment