Here is how to change Akismet interval to three days instead of 15 days for deleting spam comments using the akismet_delete_comment_interval filter.

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:

Akismet: 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.

Donate a cup of coffee
Donate a cup of coffee

Thank you very much! <3 ❤️

4 Comments

  1. Hello,

    I tried this on my blog but it didn’t work. Can we say that this code is not working anymore? I guess this doesn’t work in WordPress 5 and above versions. Would you check?

    • Hello Hakan, thank you for your comment. I added a screenshot to the post showing the ‘akismet_delete_comment_interval’ in effect. See for your self and notice the interval difference in Akismet’s configuration with and without the interval function active. You do need to select the Always put spam in the Spam folder for review option for this to be active.

    • Rehan

      Hello Hakan,
      I’ve Tested This Code Today On The Latest Verison Of WordPress AND Its Working!
      I Even Changed 3 Days to Only 1.

      Thanks

Comments are closed