Empty the trash after 7 days
Deletes posts, pages and comments for good after 7 days in the trash, instead of 30.
<?php
// The same as define( 'EMPTY_TRASH_DAYS', 7 ); in wp-config.php.
if ( ! defined( 'EMPTY_TRASH_DAYS' ) ) {
define( 'EMPTY_TRASH_DAYS', 7 );
}
In these packs
- Performance: Small changes that save the server and the browser some work.