Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: embed_oembed_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

This hook occurs 2 times in this file.

Line Code
246                      * @since 2.9.0
247                      *
248                      * @see WP_Embed::shortcode()
249                      *
250                      * @param mixed  $cache   The cached HTML result, stored in post meta.
251                      * @param string $url     The attempted embed URL.
252                      * @param array  $attr    An array of shortcode attributes.
253                      * @param int    $post_ID Post ID.
254                      */
255                     return apply_filters( 'embed_oembed_html', $cache, $url, $attr, $post_ID );
256                }
257           }
258
259           /**
260            * Filters whether to inspect the given URL for discoverable link tags.
261            *
262            * @since 2.9.0
263            * @since 4.4.0 The default value changed to true.
264            *
 
Line Code
329
330                if ( $has_kses ) {
331                     kses_init_filters();
332                }
333           }
334
335           // If there was a result, return it.
336           if ( $html ) {
337                /** This filter is documented in wp-includes/class-wp-embed.php */
338                return apply_filters( 'embed_oembed_html', $html, $url, $attr, $post_ID );
339           }
340
341           // Still unknown
342           return $this->maybe_make_link( $url );
343      }
344
345      /**
346       * Delete all oEmbed caches. Unused by core as of 4.0.0.
347       *