/ Published in: PHP
Keep your WordPress theme code free from harm by removing the Editor link in the Admin Appearance menu.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Remove Editor From Admin Appearance Menu function remove_the_editor() { remove_action('admin_menu', '_add_themes_utility_last', 101); } add_action('_admin_menu', 'remove_the_editor', 1);