Sarathlal N

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

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.