Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_feed_cache_transient_lifetime

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
828           // Back-compat for SimplePie 1.2.x.
829           require_once ABSPATH . WPINC . '/class-wp-feed-cache.php';
830           $feed->set_cache_class( 'WP_Feed_Cache' );
831      }
832
833      $feed->get_registry()->register( SimplePie\File::class, 'WP_SimplePie_File', true );
834
835      $feed->set_feed_url( $url );
836      /** This filter is documented in wp-includes/class-wp-feed-cache-transient.php */
837      $feed->set_cache_duration( apply_filters( 'wp_feed_cache_transient_lifetime', 12 * HOUR_IN_SECONDS, $url ) );
838
839      /**
840       * Fires just before processing the SimplePie feed object.
841       *
842       * @since 3.0.0
843       *
844       * @param SimplePie\SimplePie $feed SimplePie feed object (passed by reference).
845       * @param string|string[]     $url  URL of feed or array of URLs of feeds to retrieve.
846       */