Guest User

Untitled

a guest
Nov 22nd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. add_filter( 'embed_oembed_html', function ( $html, $url, $attr ) {
  2. if ((stripos($html,'<iframe') !== false || stripos($html,'<object') !== false || stripos($html,'<embed') !== false) && stripos($html,'flex-video') === false ) {
  3. $html = str_replace("<iframe","<iframe class='embed-responsive-item'",$html);
  4. return '<div class="embed-responsive embed-responsive-16by9">'.$html.'</div>';
  5. } else {
  6. return $html;
  7. }
  8. }, 9999, 3);
Add Comment
Please, Sign In to add comment