Sunday 7 February 2016

How to Disable Theme and Plugin Editors from WordPress Admin Panel

By default WordPress allows users to edit the theme and plugin codes through the admin panel. While it is a handy feature, it can be very dangerous as well. A simple typo can end up locking you out of your site unless ofcourse you have the FTP access. To prevent clients from screwing up the site, it is best to disable the theme and plugin editors from the WordPress admin panel. In this article, we will share with you a one line code that will disable theme and plugin editors functionality from WordPress.
All you have to do is open your wp-config.php file and paste the following code:
1define( 'DISALLOW_FILE_EDIT', true );
And you are done.
One of our users pointed out that if you paste this code in the theme’s functions.php file, it also works.
Refrence from

No comments:

Post a Comment