Help limiting number of post…
-
How can I limit the number of post to just 3?
Here is the code I am using on my current theme…
I have tried several things but they just mess up the code. I am not a php coder but, I’m sure someone here know what to do…
Thanks for your help,<?php $i = 0; ?> <?php if (have_posts()) : while (have_posts()) : the_post(); if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); $i++; ?> <div class="span-8 post-<?php the_ID(); ?><?php if ($i == 3) { ?> last<?php } ?>"> <h6 class="archive-header"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a></h6> <?php echo get_the_image_link(array('thumbnail','thumbnail-news'),'thumbnail'); ?> <?php the_excerpt(); ?> <p class="postmetadata"><?php the_time('M d, Y') ?> | <?php comments_popup_link('Have your say »', '1 Comment »', '% Comments »'); ?></p> </div> <?php if ($i == 3) { ?><div class="archive-stack clear"></div><?php $i = 0; } ?> <?php endwhile; endif; ?>
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Help limiting number of post…’ is closed to new replies.