WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
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 |
|