Summery Summery
YouTube iframe embed handler callback.
Syntax Syntax
Description Description
Catches YouTube iframe embed URLs that are not parsable by oEmbed but can be translated into a URL that is.
Parameters Parameters
- $matches
-
(Required) The RegEx matches from the provided regex when calling wp_embed_register_handler().
- $attr
-
(Required) Embed attributes.
- $url
-
(Required) The original URL that was matched by the regex.
- $rawattr
-
(Required) The original unmodified attributes.
Return Return
(string) The embed HTML.
Source Source
File: wp-includes/embed.php
/** * Filters the YoutTube embed output. * * @since 4.0.0 * * @see wp_embed_handler_youtube() * * @param string $embed YouTube embed output. * @param array $attr An array of embed attributes. * @param string $url The original URL that was matched by the regex. * @param array $rawattr The original unmodified attributes. */ return apply_filters( 'wp_embed_handler_youtube', $embed, $attr, $url, $rawattr ); } /** * Audio embed handler callback.
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |