Answers for "disable file mod wordpress"

PHP
0

wordpress disable edit files

//Add inside wp-config.php:
define('DISALLOW_FILE_EDIT', true);
Posted by: Guest on October-06-2020
0

wordpress disable file mods

// On wp-config.php
// Disable WP CORE / PLUGINS / THEME Updates 
// And don't give the option to do so on the WP Panel
define('DISALLOW_FILE_MODS', true);
Posted by: Guest on April-16-2021

Browse Popular Code Answers by Language