Created
May 4, 2015 16:24
-
-
Save thierrypigot/00e2aef998b572caf8a8 to your computer and use it in GitHub Desktop.
Limit plugin/theme edits and installations
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 | |
/** | |
* remove the ability for users to install or edit themes or plugins, | |
* you can use the following definitions to take care of that. | |
* The first will disable the editors, but still allow installations | |
* and updates of themes/plugins, whereas the second definition will disable all of these functions | |
* | |
**/ | |
define('DISALLOW_FILE_EDIT',true); | |
define('DISALLOW_FILE_MODS',true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment