wordpress disable editor code example
Example 1: wordpress disable theme editor
// On wp-config.php
define( 'DISALLOW_FILE_EDIT', true );
Example 2: wordpress disable edit files
//Add inside wp-config.php:
define('DISALLOW_FILE_EDIT', true);
// On wp-config.php
define( 'DISALLOW_FILE_EDIT', true );
//Add inside wp-config.php:
define('DISALLOW_FILE_EDIT', true);