Skip to main content

WordPress - Fixing the Missing Theme Editor Issue

·25 words
icysamon
Author
icysamon
I really love making things by hand and turning my ideas into reality.

Using an FTP tool, open wp-config.php in public_html.

define('DISALLOW_FILE_EDIT', true);

If this line exists, change true to false.

If it doesn’t exist, add:

define('DISALLOW_FILE_EDIT', false);