Disable WordPress Editor for Security

Add a little security to wordpress by disabling the editor in the admin area.  If an admin user is successfully hacked, any page can be changed with this editor, so disable the option in the wp-config.php file.


define('DISALLOW_FILE_EDIT', true);

Scroll to Top