Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created March 25, 2016 14:28
Show Gist options
  • Select an option

  • Save arkadiusjonczek/2fc61f35184f22d8c8df to your computer and use it in GitHub Desktop.

Select an option

Save arkadiusjonczek/2fc61f35184f22d8c8df to your computer and use it in GitHub Desktop.
WordPress: Disable Theme Editor
/* Disable Theme Editor */
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