Advertisement
arie_cristianD

edit rss feed cache time

Mar 4th, 2024 (edited)
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. add_filter( 'wp_feed_cache_transient_lifetime', 'edit_chace_rss', 99, 2 );
  2.  
  3.  
  4. function edit_chace_rss( $cache_time, $url ) {
  5.  
  6.     return 1 * HOUR_IN_SECONDS; /*chang the 1 (in hour) value as you want or you can change it to return 0 to disable the cache */
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement