Remove theme editor submenu
<?php
function remove_editor_menu() {
remove_action('admin_menu', '_add_themes_utility_last', 101);
}
add_action('_admin_menu', 'remove_editor_menu', 1);
?>
Instructions:
WordPress has a built-in editor where you can edit the code in your plugins. This is probably nothing you want your clients to access, because just a few click could break the whole site.
To remove this, you can add the this snippet to functions.php.