if now the content of the trash goes away after one month. is not longer required to write in wp-config define( 'EMPTY_TRASH_DAYS', 90 ); // Purge trash interval
?
thanks
if now the content of the trash goes away after one month. is not longer required to write in wp-config define( 'EMPTY_TRASH_DAYS', 90 ); // Purge trash interval
?
thanks
wp-includes\default-constants.php:
/**
* @since 2.9.0
*/
if ( !defined( 'EMPTY_TRASH_DAYS' ) )
define( 'EMPTY_TRASH_DAYS', 30 );
The default is 30 days.
It was never required to set define( 'EMPTY_TRASH_DAYS', 90 );
That was simply a config example.
Regards,