jarvis Posted February 22, 2012 Share Posted February 22, 2012 Hi, I have the following code: <?php query_posts( 'post_type=locations&order=desc&orderby=id'); if (have_posts()) : while ( have_posts() ) : $i++;the_post(); ?> <li><a href="http://localhost/aaa/<?php echo $post_name; ?>?locationID=<?php echo $i; ?>"><img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" title="<?php echo get_post_meta($post->ID, 'location_region', true); ?> :: <?php echo get_post_meta($post->ID, 'location_type', true); ?>" /></a></li> <?php endwhile; endif; $i = 0; ?> It works perfectly, however, instead of starting at 1, I wish it to start at 0. How would I do this? Thanks Link to comment https://forums.phpfreaks.com/topic/257532-wordpress-loop-start-at-0/ Share on other sites More sharing options...
jarvis Posted February 22, 2012 Author Share Posted February 22, 2012 Aaaah ball! Solved it, realised I needed to start the loop differently: query_posts( 'post_type=locations&order=desc&orderby=id'); if (have_posts()) : $i = 0; while ( have_posts() ) : the_post(); ?> <li><a href="http://localhost/aaa/<?php echo $post_name; ?>?locationID=<?php echo $i; ?>"><img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" title="<?php echo get_post_meta($post->ID, 'location_region', true); ?> :: <?php echo get_post_meta($post->ID, 'location_type', true); ?>" /></a></li> <?php $i++; endwhile; endif; ?> Sorry! Link to comment https://forums.phpfreaks.com/topic/257532-wordpress-loop-start-at-0/#findComment-1319997 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.