Delete spam comments after three (3) days

Change Akismet interval to three days instead of 15 days for deleting spam comments using the akismet_delete_comment_interval filter
Published on Monday, 9 December 2019

Normally in WordPress, Akismet deletes spam comments after 15 days, which may be fine with you or not. If you’d like to change the interval in which Akismet deletes spam comments, you can add the following code to your functions.php file:

/**
  * Filter to change Akismet interval to delete spam comments after 3 days
  * Support/Donate: https://www.paypal.me/jreilink
  */
  add_filter( 'akismet_delete_comment_interval', 'custom_delete_spam_interval' );
  function custom_delete_spam_interval() {
    return 3;
  }

This changes Akismet's interval to 3 days, after which comments held as spam are automatically deleted. You need to select Always put spam in the Spam folder for review option, as shown below:

17+ Useful WordPress snippets

WAkismet: Spam in the spam folder older than 3 days is deleted automatically

In this post you learned how to change Akismet interval to three (3) days instead of 15 days for deleting spam comments, using the akismet_delete_comment_interval() filter in your WordPress functions.php file.