How add class youtube and type/html to oembed code?
How can i add :
class="youtube-player" type="text/html"
to iframe like :
function Oembed_youtube_no_title($html,$url,$args){
$url_string = parse_url($url, PHP_URL_QUERY);
parse_str($url_string, $id);
if (isset($id['v'])) {
return 'iframe class="youtube-player" type="text/html" src="https://www.youtube.com/embed/' .$id['v'].'?vq=largeautohide=1autoplay=1fs=1hl=frrel=0loop=1" frameborder="0" allowfullscreen/iframe';
}
return $html;
}
Topic video-player oembed youtube Wordpress
Category Web