Viewing File: /home/maglabs/luchiana/wp-content/themes/floria/skins/default/templates/header-video.php

<?php
/**
 * The template to display the background video in the header
 *
 * @package FLORIA
 * @since FLORIA 1.0.14
 */
$floria_header_video = floria_get_header_video();
$floria_embed_video  = '';
if ( ! empty( $floria_header_video ) && ! floria_is_from_uploads( $floria_header_video ) ) {
	if ( floria_is_youtube_url( $floria_header_video ) && preg_match( '/[=\/]([^=\/]*)$/', $floria_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 floria_show_layout( floria_get_embed_video( $floria_header_video ) ); ?></div>
		<?php
	}
}
Back to Directory File Manager