Skip to content

Embed Full width Video

Hoàng Hà edited this page Jun 17, 2015 · 4 revisions

As an Online Learning Page, the main content is usually video. So, we have change the default embed video to a custom embed with video full-width of your content layout.

/**
* Custom embed video 
*/
function learn_press_custom_embed_video($html, $url, $attr, $post_ID) {
         $return = '<div class="videoWrapper">' . $html . '</div>';
         return $return;
}
add_filter( 'embed_oembed_html', 'learn_press_custom_embed_video', 10, 4 );

If you don't want to use this feature, simply remove it in your theme function file:

remove_filter( 'embed_oembed_html', 'learn_press_custom_embed_video', 10, 4 );

We also provide a button Embed to custom embed a full-width video after you remove the filter above.