-
-
Save georgestephanis/3164991 to your computer and use it in GitHub Desktop.
This file contains 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
<?php $tombstones = new WP_Query('category_name=tombstones&posts_per_page=-1&order=ASC'); ?> | |
<?php $counter = 0; ?> | |
<div class="slide"> | |
<?php if ( $tombstones->have_posts() ) : while ( $tombstones->have_posts() ) : ?> | |
<?php if ( $counter && ( $counter % 3 == 0 ) ) echo "</div><!-- /slide -->\r\n\r\n<div class='slide'>"; ?> | |
<?php $tombstones->the_post(); $counter++; ?> | |
<?php the_content(); ?> | |
<?php endwhile; endif;?> | |
</div><!-- /slide --> | |
</div><!-- end slideshow --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment