Skip to content

Instantly share code, notes, and snippets.

@farinspace
Created February 7, 2012 01:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save farinspace/1756484 to your computer and use it in GitHub Desktop.
Save farinspace/1756484 to your computer and use it in GitHub Desktop.
<div class="carousel">
<a href="#" class="prev">&nbsp</a>
<ul id="mycarousel" class="jcarousel-skin-carousel">
<?php global $ad_metabox; ?>
<?php query_posts('post_type=ad&showposts=-1') ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<?php $ad_metabox->the_meta( get_the_ID() ); ?>
<?php echo $ad_metabox->get_the_value('ad-url'); ?>
<a href=""><?php the_post_thumbnail(); ?></a>
</li>
<?php endwhile; endif; ?>
</ul>
<a href="#" class="next">&nbsp</a>
<?php wp_reset_query(); ?>
</div><!-- .carousel -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment