Created
March 25, 2016 14:28
-
-
Save arkadiusjonczek/2fc61f35184f22d8c8df to your computer and use it in GitHub Desktop.
WordPress: Disable Theme Editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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