Return to Snippet

Revision: 32570
at September 29, 2010 04:46 by fjarrett


Initial Code
// 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);

Initial URL


Initial Description
Keep your WordPress theme code free from harm by removing the Editor link in the Admin Appearance menu.

Initial Title
Remove Editor From Admin Appearance Menu

Initial Tags
wordpress

Initial Language
PHP