ThomasLarge
10/30/2017 - 3:54 PM

WP Config

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 );