I am trying to set up a slideshow inside of a wordpress loop. To do so, I want to have one section of the slide content, and one section that does the navigation.
Here is my code:
<div id="upcoming_shows">
<?php if ( $shows->have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( $shows->have_posts() ) : $shows->the_post(); ?>
<?php //get rid of auto drafts and trash posts
$p_status = get_post_status( $post );
if ($p_status != 'trash' and $p_status != 'auto-draft') :
?>
<!--I WANT A containing DIV HERE created only once-->
<div id="slides">
<div class="slide" id="slide-<?php echo $post->ID; ?>">
<?php the_post_thumbnail(); ?>
<p class="show_date"><?php echo get_field('show_date'); ?></p>
<h1 class="band_names"><a href="<?php the_permalink(); ?>" alt="link to blog post page"><?php the_title(); ?></a></h1>
</div><!--end Slide-->
<!--AND IT WILL END HERE-->
</div><!-- end SLIDES CONTAINING DIV-->
<!--THEN ANOTHER DIV HERE CONTAINING THE SLIDES_NAV-->
<div id="slides_nav"> <!--CREATE THIS ONLY ONCE as a wrapper-->
<p class="band_names"><a href=#slide-"<?php $post->ID; ?>"><?php the_title(); ?></a></p>
</div><!--end slides nav CONTAINER-->
<?php endif; ?><!--end Auto Draft check-->
<?php endwhile; ?>
<?php endif; ?><!--end if haveposts-->
</div><!--end upcoming_shows-->
What I would like to do is wrap the elements with a class of "slide" in a div called "slides", and then create another set of elements wrapped in a div called "slides_nav".
I can't figure out a way to say :
"If this is the first iteration of the loop, create a div called "slides" around the all the "slide" elements.
"If this is the first iteration of the loop, create a div called "slide_nav" to wrap the slide navigation elements" (which will also be created inside the loop (they will be the title of the $shows post and a page-internal link to the slide with an ID matching the slide_nav href.)
I tried:
<?php $i=0;
if ($i == 0) {
echo '<div id="slides">';
$i++;
};
and it correctly created the div, but did so for each slide ( I also added the conditional to close the div).
I am a beginner to PHP fyi.
I looked at some answers to create something once inside of a loop, and tried a few, but I believe my lack of programming knowledge may have me missing a simple solution.
Thanks