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
1233
1234      /**
1235       * Triggers a caching of all oEmbed results.
1236       *
1237       * @param int $post_ID Post ID to do the caching for.
1238       */
1239      function cache_oembed( $post_ID ) {
1240           $post = get_post( $post_ID );
1241
1242           if ( empty($post->ID) || !in_array( $post->post_type, apply_filters( 'embed_cache_oembed_types', array( 'post', 'page' ) ) ) )
1243                return;
1244
1245           // Trigger a caching
1246           if ( !empty($post->post_content) ) {
1247                $this->post_ID = $post->ID;
1248                $this->usecache = false;
1249
1250                $content = $this->run_shortcode( $post->post_content );
1251                if ( get_option('embed_autourls') )