Skip to content

Instantly share code, notes, and snippets.

@ivandoric
Created April 27, 2015 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivandoric/25d62025a6824a7dff85 to your computer and use it in GitHub Desktop.
Save ivandoric/25d62025a6824a7dff85 to your computer and use it in GitHub Desktop.
wordpress: Add container around video embeds (functions.php)
<?php
/* Add container around videos */
add_filter( 'embed_oembed_html', 'custom_oembed_filter', 10, 4 ) ;
function custom_oembed_filter($html, $url, $attr, $post_ID) {
$return = '<div class="video-container">'.$html.'</div>';
return $return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment