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 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.
*/