Skip to content

Instantly share code, notes, and snippets.

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 hirejordansmith/f47a4dab09bac005e9cbf75babe8e5ec to your computer and use it in GitHub Desktop.
Save hirejordansmith/f47a4dab09bac005e9cbf75babe8e5ec to your computer and use it in GitHub Desktop.
Simple Responsive Video Shortcode
<?php
// [yvideo vid="4mEbABPtTv8" /]
add_shortcode( 'yvideo', 'hjs_do_video' );
function hjs_do_video() {
$atts = shortcode_atts( array(
'vid' => ''
), $atts, 'yvideo' );
return '<div class="embed-container"><iframe src="https://www.youtube.com/embed/' . $atts['vid'] . '" frameborder="0" allowfullscreen></iframe></div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment