Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created August 5, 2016 16:51
Show Gist options
  • Save bappi-d-great/a07e1616ef90ff50145b6f2e12e69880 to your computer and use it in GitHub Desktop.
Save bappi-d-great/a07e1616ef90ff50145b6f2e12e69880 to your computer and use it in GitHub Desktop.
Disable related videos in CoursePress youtube featured video
<?php
add_filter( 'oembed_result', function( $embed, $url, $args ) {
$url_string = parse_url( $url, PHP_URL_QUERY );
parse_str( $url_string, $id );
if( isset( $id['v'] ) )
{
return str_replace( '?feature=oembed', '?feature=oembed&rel=0', $embed );
}
return $embed;
}, 99, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment