Created
June 9, 2015 13:58
-
-
Save tcelestino/dbc3b8bfb8b1a51b8f55 to your computer and use it in GitHub Desktop.
wp-config.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// disable post revision | |
define('WP_POST_REVISIONS', false ); | |
// change filesystem method | |
define('FS_METHOD', 'direct'); | |
// disable edit themes and plugins | |
define('DISALLOW_FILE_EDIT',true); | |
// dont install and update plugins and themes (warning) | |
define('DISALLOW_FILE_MODS',true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment