Empty WordPress trash before 30 days
In WordPress, when we delete posts, pages & comments, WordPress will keep all of these items in trash for next 30 days. Else we want to go to trash & permanently delete them.
After 30 days, WordPress will delete all trashed items. But if these items are unnecessary for 30 days, why we want to keep them in our database?
Now we are going to reduce these 30 days life time of trashed items using a single line of code.
Add the below line of code in wp-config.php
in our root folder.
define ('EMPTY_TRASH_DAYS', 7);
From now, WordPress will empty its trash items after 7 days.
If you like to completely disable trash in WordPress, we can choose zero days like below.
define ('EMPTY_TRASH_DAYS', 0);
Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!
Recent Posts
- Automating Code Linting with GitHub Actions for WordPress Plugins
- Comprehensive Guide to Linting PHP, JavaScript, and CSS in WordPress Plugins Using Composer
- The Ultimate Guide to Indexing in Database Design
- Understanding 'update_meta_cache' in WordPress - When to Use It, When Not to, and Its Impact on Database Queries
- A Guide to Configuring JavaScript and SCSS Paths in WordPress Plugins with @wordpress/scripts
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.