Last active
May 15, 2016 15:04
-
-
Save robertpassaro/0e53b4b192ef540ffc9c8ad95382009e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
==== 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