Skip to content

Instantly share code, notes, and snippets.

@fovoc
Forked from bappi-d-great/code.php
Created August 5, 2016 16:54
Show Gist options
  • Save fovoc/d4e84dd4a760390bff4d580a0d935ce8 to your computer and use it in GitHub Desktop.
Save fovoc/d4e84dd4a760390bff4d580a0d935ce8 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