Skip to content

Instantly share code, notes, and snippets.

@rustam-swe
Created November 11, 2020 05:30
Show Gist options
  • Save rustam-swe/8d15abc723ad03063ae1d13e038adeed to your computer and use it in GitHub Desktop.
Save rustam-swe/8d15abc723ad03063ae1d13e038adeed to your computer and use it in GitHub Desktop.
Snippet for disabe editing files in WordPress
<?php
/**
* Disable Theme Editor
* Source: http://guides.beanstalkapp.com/deployments/deploying-wordpress.html
*/
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