Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: oembed_linktypes

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
451                /**
452                 * Filters the link types that contain oEmbed provider URLs.
453                 *
454                 * @since 2.9.0
455                 *
456                 * @param string[] $format Array of oEmbed link types. Accepts 'application/json+oembed',
457                 *                         'text/xml+oembed', and 'application/xml+oembed' (incorrect,
458                 *                         used by at least Vimeo).
459                 */
460                $linktypes = apply_filters(
461                     'oembed_linktypes',
462                     array(
463                          'application/json+oembed' => 'json',
464                          'text/xml+oembed'         => 'xml',
465                          'application/xml+oembed'  => 'xml',
466                     )
467                );
468
469                // Strip <body>.