Skip to content

Instantly share code, notes, and snippets.

@leonkorteweg
Last active April 17, 2018 16:09
Show Gist options
  • Save leonkorteweg/aaec72bda54faf3af3cd8888a99ae118 to your computer and use it in GitHub Desktop.
Save leonkorteweg/aaec72bda54faf3af3cd8888a99ae118 to your computer and use it in GitHub Desktop.
Responsive YouTube embed without cookies (WordPress snippet)
<?php
/**
* Responsive YouTube embed without cookies (WordPress snippet)
*
* Usage: Add this shortcode to your page to embed a video: [video id="{{your youtube id here}}"]
* Installation: Add this snippet in the functions.php file of your plugin or via the Code Snippets plugin
*/
add_shortcode( 'video' , 'hayona_shortcode_youtube_nocookie' );
function hayona_shortcode_youtube_nocookie( $atts ) {
return '<div style="position: relative; padding-bottom: 56.25%;height: 0;overflow: hidden;"><iframe style="position:absolute;top: 0; left: 0; width: 100%; height: 100%;" src="https://www.youtube-nocookie.com/embed/' . $atts['id'] . '" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div>';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment