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 |
---|---|
370 |
|
371 | $post_types = get_post_types( array( 'show_ui' => true ) ); |
372 | /** |
373 | * Filters the array of post types to cache oEmbed results for. |
374 | * |
375 | * @since 2.9.0 |
376 | * |
377 | * @param string[] $post_types Array of post type names to cache oEmbed results for. Defaults to post types with `show_ui` set to true. |
378 | */ |
379 | if ( empty( $post->ID ) || ! in_array( $post->post_type, apply_filters( 'embed_cache_oembed_types', $post_types ) ) ) { |
380 | return; |
381 | } |
382 |
|
383 | // Trigger a caching |
384 | if ( ! empty( $post->post_content ) ) { |
385 | $this->post_ID = $post->ID; |
386 | $this->usecache = false; |
387 |
|
388 | $content = $this->run_shortcode( $post->post_content ); |