SahilMepani
7/13/2018 - 6:56 PM

PHP: Magnific Popup Youtube Video Formatting

This will format all the youtube URL to make it work with Magnific popup.

function tse_validate_youtube_link( $link ) {
	preg_match("#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=v\/)[^&\n]+(?=\?)|(?<=v=)[^&\n]+|(?<=youtu.be/)[^&\n]+#", $link, $matches);
	$link = 'https://www.youtube.com/watch?v=' . $matches[0];
	return $link;
}