Skip to content

Instantly share code, notes, and snippets.

@simplethemes
Created April 20, 2016 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simplethemes/d44b6b63babfa54cdf924d17f4904f7a to your computer and use it in GitHub Desktop.
Save simplethemes/d44b6b63babfa54cdf924d17f4904f7a to your computer and use it in GitHub Desktop.
Removes the YouTube dog shit from WordPress oEmbed
function deuglify_youtube($embed) {
if (strstr($embed,'https://www.youtube.com/embed/')) {
return str_replace('?feature=oembed','?feature=oembed&autohide=1&rel=0&modestbranding=0&showinfo=0&enablejsapi=1',$embed);
} else {
return $embed;
}
}
add_filter('oembed_result', 'deuglify_youtube', 1, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment