jetpack_podcast_feed_cache_timeout
jetpack_podcast_feed_cache_timeout
Appears in: jetpack.11.3.1, jetpack.11.3.2, jetpack.11.4, jetpack.11.5.1, jetpack.11.6, jetpack.11.8, jetpack.11.8.4, jetpack.11.9, jetpack.11.9.1, jetpack.12.0, jetpack.12.1, jetpack.12.1.1, jetpack.12.2.1, jetpack.12.3, jetpack.12.5, jetpack.12.6, jetpack.12.6.1, jetpack.12.7.1, jetpack.12.8, jetpack.12.8.1, jetpack.12.9, jetpack.12.9.3, jetpack.13.0, jetpack.13.1.1, jetpack.13.1.3, jetpack.13.2, jetpack.13.2.1, jetpack.13.3.1, jetpack.13.5, jetpack.13.6, jetpack.13.7, jetpack.13.8, jetpack.13.8.1, jetpack.13.9.1, jetpack.14.0, jetpack.14.1, jetpack.14.2.1, jetpack.14.3, jetpack.14.4.1, jetpack.14.5
Hook Type: filter
Displaying hooks found in version: jetpack.14.5apply_filters('jetpack_podcast_feed_cache_timeout') is found 1 times:
- /_inc/lib/class-jetpack-podcast-helper.php line 565253545556575859606162
*
* @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
;
}
}