Skip to content

Instantly share code, notes, and snippets.

@themeblvd
Created March 24, 2018 21:38
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 themeblvd/6bc48d4555a3ff31dd44c4c35a67702a to your computer and use it in GitHub Desktop.
Save themeblvd/6bc48d4555a3ff31dd44c4c35a67702a to your computer and use it in GitHub Desktop.
<?php
// Just set up an array and pass it to the function, and
// echo out the returned HTML.
$atts = array(
'link' => $videourl,
'thumb' => $videothumb,
);
echo themeblvd_shortcode_lightbox( $atts );
// And you can simplify it by just passing the array directly
// to the function, also.
echo themeblvd_shortcode_lightbox( array(
'link' => $videourl,
'thumb' => $videothumb,
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment