Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_oembed_ttl

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
185            * Similar to the {@see 'oembed_ttl'} filter, but for the REST API
186            * oEmbed proxy endpoint.
187            *
188            * @since 4.8.0
189            *
190            * @param int    $time    Time to live (in seconds).
191            * @param string $url     The attempted embed URL.
192            * @param array  $args    An array of embed request arguments.
193            */
194           $ttl = apply_filters( 'rest_oembed_ttl', DAY_IN_SECONDS, $url, $args );
195
196           set_transient( $cache_key, $data, $ttl );
197
198           return $data;
199      }
200 }
201