Last active
October 18, 2017 21:04
-
-
Save marcbacon/33fff3c0234ccfb4fda2 to your computer and use it in GitHub Desktop.
[Misc. settings for wp-config.php] #wordpress
This file contains hidden or 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
// Limit post revisions to 2 | |
define( 'WP_POST_REVISIONS', 2 ); | |
// Save queries | |
define('SAVEQUERIES', true); | |
// Move uploads folder | |
define( 'UPLOADS', 'blog/wp-content/uploads' ); | |
// Disable Cron | |
define( 'DISABLE_WP_CRON', true ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment