Remove related videos
-
We have a function that automatically turns off related videos when we embed via WordPress. Here is the function
function remove_related_videos($html, $url, $attr) { if ( strpos ( $html, 'feature=oembed' ) !== false ) { return str_replace( 'feature=oembed', 'feature=oembed&rel=0', $html ); } else { return $html; } } add_filter( 'embed_oembed_html', 'remove_related_videos', 10, 3);
It doesn’t work with LazyLoad. When you pause a video or reach the end it displays a list of related videos. Is there a way to make our function work with LazyLoad or some other way to prevent related videos?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Remove related videos’ is closed to new replies.