Skip to content

Instantly share code, notes, and snippets.

@macbookandrew
Created June 21, 2016 19:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macbookandrew/2646426895d88d1e7e06affd627bd178 to your computer and use it in GitHub Desktop.
Save macbookandrew/2646426895d88d1e7e06affd627bd178 to your computer and use it in GitHub Desktop.
Prevent YouTube embedded videos from showing related videos at the end
/* Prevent YouTube Related Content on oEmbed-ed videos */
add_filter( 'oembed_result', 'prevent_featured_youtube_videos' );
function prevent_featured_youtube_videos( $embed ) {
return str_replace( '?feature=oembed', '?feature=oembed&rel=0', $embed );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment