Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: oembed_result

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
404            * Filters the HTML returned by the oEmbed provider.
405            *
406            * @since 2.9.0
407            *
408            * @param string|false $data The returned oEmbed HTML (false if unsafe).
409            * @param string       $url  URL of the content to be embedded.
410            * @param string|array $args Optional. Additional arguments for retrieving embed HTML.
411            *                           See wp_oembed_get() for accepted arguments. Default empty.
412            */
413           return apply_filters( 'oembed_result', $this->data2html( $data, $url ), $url, $args );
414      }
415
416      /**
417       * Attempts to discover link tags at the given URL for an oEmbed provider.
418       *
419       * @since 2.9.0
420       *
421       * @param string $url The URL that should be inspected for discovery `<link>` tags.
422       * @return string|false The oEmbed provider URL on success, false on failure.