-
-
Save netconstructor/2050034 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="carousel"> | |
<a href="#" class="prev"> </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"> </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