Skip to content

Instantly share code, notes, and snippets.

@daltonrooney
Created December 7, 2011 02:27
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 daltonrooney/1441149 to your computer and use it in GitHub Desktop.
Save daltonrooney/1441149 to your computer and use it in GitHub Desktop.
Simple template for embedded slideshows
<?php
/*
/* Template Name: Gallery slideshow
/*
*/
?>
<?php get_header();?>
<?php $id = apply_filters('attribute_escape', $_GET['id']);?>
<section class="main">
<?php if ( $id ) {
echo do_shortcode( "[portfolio_slideshow id=$id]");
} ?>
</section>
<?php get_footer();?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment