Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: embed_handler_html

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
1164           // See http://core.trac.wordpress.org/ticket/11311
1165           $url = str_replace( '&', '&', $url );
1166
1167           // Look for known internal handlers
1168           ksort( $this->handlers );
1169           foreach ( $this->handlers as $priority => $handlers ) {
1170                foreach ( $handlers as $id => $handler ) {
1171                     if ( preg_match( $handler['regex'], $url, $matches ) && is_callable( $handler['callback'] ) ) {
1172                          if ( false !== $return = call_user_func( $handler['callback'], $matches, $attr, $url, $rawattr ) )
1173                               return apply_filters( 'embed_handler_html', $return, $url, $attr );
1174                     }
1175                }
1176           }
1177
1178           $post_ID = ( !empty($post->ID) ) ? $post->ID : null;
1179           if ( !empty($this->post_ID) ) // Potentially set by WP_Embed::cache_oembed()
1180                $post_ID = $this->post_ID;
1181
1182           // Unknown URL format. Let oEmbed have a go.