Skip to content

Instantly share code, notes, and snippets.

@billrobbins
Created November 30, 2011 04:39
Show Gist options
  • Save billrobbins/1408040 to your computer and use it in GitHub Desktop.
Save billrobbins/1408040 to your computer and use it in GitHub Desktop.
Foundation Slideshow Shortcode
// create slideshow shortcode
function organizedthemes_home_slideshow() { ?>
<div id="slider">
<?php $loop = new WP_Query( array( 'post_type' => 'slide', 'posts_per_page' => -1, 'orderby'=>'menu_order', 'order'=>'ASC' ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<a href="<?php echo get_post_meta($post->ID, "slideurl", TRUE); ?>"><?php the_post_thumbnail('slide'); ?></a>
<?php endwhile; ?><?php wp_reset_query(); ?>
</div>
<?php }
add_shortcode('organizedthemes_slideshow', 'organizedthemes_home_slideshow');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment