Hi,
Please paste this code:-
function sf_video_youtube( $url, $width = 640, $height = 480 ) {
preg_match( '/[\\?\\&]v=([^\\?\\&]+)/', $url, $video_id );
$youtube_params = apply_filters( 'sf_youtube_embed_params', '?showinfo=0&controls=1&modestbranding=1&rel=0' );
$video_padding = ( intval( $height, 10 ) / intval( $width, 10 ) ) * 100;
$inline_style = 'padding-bottom: ' . $video_padding . '%;';
if ( is_ssl() ) {
return '<div class="sf-video-wrap" style="' . $inline_style . '"><iframe itemprop="video" class="video-embed" src="https://www.youtube.com/embed/' . $video_id[1] . $youtube_params . '" width="' . $width . '" height="' . $height . '" allowfullscreen></iframe></div>';
} else {
return '<div class="sf-video-wrap" style="' . $inline_style . '"><iframe itemprop="video" class="video-embed" src="http://www.youtube.com/embed/' . $video_id[1] . $youtube_params . '" width="' . $width . '" height="' . $height . '" allowfullscreen></iframe></div>';
}
}
Thanks
Mohammad