Skip to content

Instantly share code, notes, and snippets.

@marcbacon
Last active October 18, 2017 21:04
Show Gist options
  • Save marcbacon/33fff3c0234ccfb4fda2 to your computer and use it in GitHub Desktop.
Save marcbacon/33fff3c0234ccfb4fda2 to your computer and use it in GitHub Desktop.
[Misc. settings for wp-config.php] #wordpress
// 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