jetpack_podcast_feed_cache_timeout, $this->cache_timeout, $this->feed
jetpack_podcast_feed_cache_timeout, $this->cache_timeout, $this->feed
Appears in: jetpack.16.0.1
Hook Type: filter
Displaying hooks found in version: jetpack.16.0.1apply_filters('jetpack_podcast_feed_cache_timeout, $this->cache_timeout, $this->feed') is found 1 times:
- /_inc/lib/class-jetpack-podcast-helper.php line 53
* * @param int|null $cache_timeout The number of seconds to cache the podcast data. Default value is null, so we don't override any defaults from existing filters. * @param string $podcast_url The URL of the podcast feed. */ $podcast_cache_timeout = apply_filters( 'jetpack_podcast_feed_cache_timeout', $this->cache_timeout, $this->feed ); // Make sure we force new values for $this->cache_timeout to be integers. if ( is_numeric( $podcast_cache_timeout ) ) { $this->cache_timeout = (int) $podcast_cache_timeout; } }