embed_cache_oembed_types
Filters the array of post types to cache oEmbed results for.
Usage
add_filter( 'embed_cache_oembed_types', 'wp_kama_embed_cache_oembed_types_filter' );
/**
* Function for `embed_cache_oembed_types` filter-hook.
*
* @param string[] $post_types Array of post type names to cache oEmbed results for.
*
* @return string[]
*/
function wp_kama_embed_cache_oembed_types_filter( $post_types ){
// filter...
return $post_types;
}
- $post_types(string[])
- Array of post type names to cache oEmbed results for.
Default: post types withshow_uiset to true
Changelog
| Since 2.9.0 | Introduced. |
Where the hook is called
embed_cache_oembed_types
wp-includes/class-wp-embed.php 416
$cache_oembed_types = apply_filters( 'embed_cache_oembed_types', $post_types );