wp_embed_handler_youtube()
YouTube iframe embed handler callback.
Catches YouTube iframe embed URLs that are not parsable by oEmbed but can be translated into a URL that is.
Хуки из функции
Возвращает
Строку
. The embed HTML.
Использование
wp_embed_handler_youtube( $matches, $attr, $url, $rawattr );
- $matches(массив) (обязательный)
- The RegEx matches from the provided regex when calling wp_embed_register_handler().
- $attr(массив) (обязательный)
- Embed attributes.
- $url(строка) (обязательный)
- The original URL that was matched by the regex.
- $rawattr(массив) (обязательный)
- The original unmodified attributes.
Заметки
- Global. WP_Embed. $wp_embed WordPress Embed object.
Список изменений
С версии 4.0.0 | Введена. |
Код wp_embed_handler_youtube() wp embed handler youtube WP 6.6.2
function wp_embed_handler_youtube( $matches, $attr, $url, $rawattr ) { global $wp_embed; $embed = $wp_embed->autoembed( sprintf( 'https://youtube.com/watch?v=%s', urlencode( $matches[2] ) ) ); /** * Filters the YouTube 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 ); }