Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <div class="videoWrapper">
  2. <iframe width="600" height="338" src="https://www.youtube.com/embed/f5CcOq8UzkI?feature=oembed" frameborder="0" allowfullscreen=""></iframe>
  3. </div>
  4.  
  5. function Oembed_youtube_no_title($html,$url,$args){
  6. $url_string = parse_url($url, PHP_URL_QUERY);
  7. parse_str($url_string, $id);
  8. if (isset($id['v'])) {
  9. return '<div class="embed-container"><iframe width="'.$args['width'].'" height="'.$args['height'].'" src="http://www.youtube.com/embed/'.$id['v'].'?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe></div>';
  10. }
  11. return $html;
  12. }
  13. add_filter('oembed_result','Oembed_youtube_no_title',10,3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement