<?php
/**
* The template to display the background video in the header
*
* @package SPIN
* @since SPIN 1.0.14
*/
$spin_header_video = spin_get_header_video();
$spin_embed_video = '';
if ( ! empty( $spin_header_video ) && ! spin_is_from_uploads( $spin_header_video ) ) {
if ( spin_is_youtube_url( $spin_header_video ) && preg_match( '/[=\/]([^=\/]*)$/', $spin_header_video, $matches ) && ! empty( $matches[1] ) ) {
?><div id="background_video" data-youtube-code="<?php echo esc_attr( $matches[1] ); ?>"></div>
<?php
} else {
?>
<div id="background_video"><?php spin_show_layout( spin_get_embed_video( $spin_header_video ) ); ?></div>
<?php
}
}