Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: embed_cache_oembed_types

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
404           $post_types = get_post_types( array( 'show_ui' => true ) );
405
406           /**
407            * Filters the array of post types to cache oEmbed results for.
408            *
409            * @since 2.9.0
410            *
411            * @param string[] $post_types Array of post type names to cache oEmbed results for. Defaults to post types with `show_ui` set to true.
412            */
413           $cache_oembed_types = apply_filters( 'embed_cache_oembed_types', $post_types );
414
415           if ( empty( $post->ID ) || ! in_array( $post->post_type, $cache_oembed_types, true ) ) {
416                return;
417           }
418
419           // Trigger a caching.
420           if ( ! empty( $post->post_content ) ) {
421                $this->post_ID  = $post->ID;
422                $this->usecache = false;