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