Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // Limit number of saved revisions to five
  2. define( 'WP_POST_REVISIONS', 5 ); // limit number of revisions to 5
  3.  
  4. // Control how often WordPress autosaves
  5. define( 'AUTOSAVE_INTERVAL', 160 ); // in seconds
  6.  
  7. // Empty trash every 7 days
  8. define( 'EMPTY_TRASH_DAYS', 7 ); // empty trash weekly
  9.  
  10. // Increase memory limit to 128mb for the front-end and 256mb for wp-admin
  11. define('WP_MEMORY_LIMIT', '128M'); // increase limit to 128M
  12. define('WP_MAX_MEMORY_LIMIT','256M'); // increase admin limit to 256M
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement