Skip to content

Instantly share code, notes, and snippets.

@robertpassaro
Last active May 15, 2016 15:04
Show Gist options
  • Save robertpassaro/0e53b4b192ef540ffc9c8ad95382009e to your computer and use it in GitHub Desktop.
Save robertpassaro/0e53b4b192ef540ffc9c8ad95382009e to your computer and use it in GitHub Desktop.
/*
==== Wrap video embeds in a div so they can be made responsive
(will need to have appropriate css in place)
.embed-container iframe {position:absolute;top:0;left:0;width:100%;height:100%}
*/
add_filter( 'embed_oembed_html', 'fq_wrap_embed', 10, 3 );
function fq_wrap_embed( $html, $url, $attr ) {
return '<div class="embed-container">' . $html . '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment