rest_oembed_ttl filter-hook . WP 4.8.0
Filters the oEmbed TTL value (time to live).
Similar to the 'oembed_ttl' filter, but for the REST API oEmbed proxy endpoint.
Usage
add_filter( 'rest_oembed_ttl', 'filter_function_name_8630', 10, 3 ); function filter_function_name_8630( $time, $url, $args ){ // filter... return $time; }
- $time(int)
- Time to live (in seconds).
- $url(string)
- The attempted embed URL.
- $args(array)
- An array of embed request arguments.
Changelog
Since 4.8.0 | Introduced. |
Where the hook is called
rest_oembed_ttl
wp-includes/class-wp-oembed-controller.php 237
$ttl = apply_filters( 'rest_oembed_ttl', DAY_IN_SECONDS, $url, $args );