Clicky

  1. Home
  2. How To
  3. How to change the image transients expiration date

How to change the image transients expiration date

By default, we will expire the image transients by 8 days and if you want to changes the expiration date then will the help of this filter “ampforwp_change_image_transient” you can easily do it.

For example:

If you want to change it for just 1 day then you need to add the code like below and your image transients will expire in just 1 day and in the same way you can change to any number as you want

add_filter('ampforwp_change_image_transient','prefix_image_transient');
function prefix_image_transient($transient_expiration){
 $transient_expiration = 1 * DAY_IN_SECONDS;
 return $transient_expiration;
}


That’s it for this tutorial!!!!

We hope it helped you. If you have any feedback or questions, then please share them in the comments section below.

Ask your Questions Directly!
If you can't find the solutions in this article, then just ask us in the comments and we will answer it for you!
Updated on May 8, 2020

    Are you still looking for a solution?

    Then fill out the below form and we will reach out to you within a few hours.

    Was this article helpful?

    Related Articles

    Leave a Comment