Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: embed_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
475       * Filters the embed HTML output for a given post.
476       *
477       * @since 4.4.0
478       *
479       * @param string  $output The default iframe tag to display embedded content.
480       * @param WP_Post $post   Current post object.
481       * @param int     $width  Width of the response.
482       * @param int     $height Height of the response.
483       */
484      return apply_filters( 'embed_html', $output, $post, $width, $height );
485 }
486
487 /**
488  * Retrieves the oEmbed response data for a given post.
489  *
490  * @since 4.4.0
491  *
492  * @param WP_Post|int $post  Post object or ID.
493  * @param int         $width The requested width.