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 |
---|---|
1067 | $rawattr = $attr; |
1068 | $attr = wp_parse_args( $attr, wp_embed_defaults() ); |
1069 |
|
1070 | // Look for known internal handlers |
1071 | ksort( $this->handlers ); |
1072 | foreach ( $this->handlers as $priority => $handlers ) { |
1073 | foreach ( $handlers as $id => $handler ) { |
1074 | if ( preg_match( $handler['regex'], $url, $matches ) && is_callable( $handler['callback'] ) ) { |
1075 | if ( false !== $return = call_user_func( $handler['callback'], $matches, $attr, $url, $rawattr ) ) |
1076 | return apply_filters( 'embed_handler_html', $return, $url, $attr ); |
1077 | } |
1078 | } |
1079 | } |
1080 |
|
1081 | $post_ID = ( !empty($post->ID) ) ? $post->ID : null; |
1082 | if ( !empty($this->post_ID) ) // Potentially set by WP_Embed::cache_oembed() |
1083 | $post_ID = $this->post_ID; |
1084 |
|
1085 | // Unknown URL format. Let oEmbed have a go. |