10 lines
178 B
PHP
10 lines
178 B
PHP
|
<?php
|
||
|
/*
|
||
|
Plugin Name: Disable File Editing
|
||
|
Description: Disable Theme and Plugin Editing From Admin Area
|
||
|
Author: Nicholas A. Ferrell
|
||
|
*/
|
||
|
|
||
|
define( 'DISALLOW_FILE_EDIT', true );
|
||
|
|
||
|
?>
|