jetpack_podcast_feed_cache_timeout

jetpack_podcast_feed_cache_timeout

Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.14.5

apply_filters('jetpack_podcast_feed_cache_timeout') is found 1 times:

  • /_inc/lib/class-jetpack-podcast-helper.php line 56
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
         *
         * @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;
        }
    }