Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Issue with WordPress embed_oembed_html Reply To: Issue with WordPress embed_oembed_html

#236892
vandigroup
Participant

The only issue with the original code here is that you need to return $cache rather than $html. The correct code would be:

add_filter('embed_oembed_html', 'custom_youtube_settings', 99, 4);
function custom_youtube_settings($cache, $url, $attr, $post_id) {
return '<div class="embed-responsive embed-responsive-16by9">' . $cache . '</div>';
}