Skip to content

Instantly share code, notes, and snippets.

@ThomasLarge
Created October 30, 2017 15:54
Show Gist options
  • Save ThomasLarge/09d6cd0da6ab33c629ee29e31fda069e to your computer and use it in GitHub Desktop.
Save ThomasLarge/09d6cd0da6ab33c629ee29e31fda069e to your computer and use it in GitHub Desktop.
WP Config
/** Wordpress memory limit. */
define('WP_MEMORY_LIMIT', '128M');
/* Hides all updates to the core and plugins : Change to false to update */
define('DISALLOW_FILE_MODS',true);
// Only allow 5 post revisons
define('WP_POST_REVISIONS', 5); // Change to false if you don't want any to save
// Empty trash after 7 days
define('EMPTY_TRASH_DAYS', 7 );
// Clean up image edits
define( 'IMAGE_EDIT_OVERWRITE', true );
// Disable auto update to core
define('WP_AUTO_UPDATE_CORE', false);
// Removes <br/> & <p> from Contact form 7
define('WPCF7_AUTOP', false );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment