Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. namespace WPX\Filters;
  2.  
  3. /**
  4. * Filter Video Shortcode
  5. */
  6. function responsive_videos($html, $url, $attr) {
  7. return '<div class="video">'.$html.'</div>';
  8. }
  9. add_filter('embed_oembed_html', '\WPX\Filters\responsive_videos', 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement