First and last post in loop
-
Hi!
I have code like this, there first post is diferent styled, like others, but how to style different last one?<?php if (have_posts()) : ?> <?php $post = $posts[0]; $c=0;?> <?php query_posts( 'posts_per_page=8&cat=13' );?> <?php while (have_posts()) : the_post(); ?> <?php $c++; if( !$paged && $c == 1) :?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="post-entry"> <?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" > <?php the_post_thumbnail(); ?> </a> <?php endif; ?> <h1><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> <?php edit_post_link(__('<img src="' . site_url('') . '/wp-content/themes/metroons/icons/edit.png" />', 'metroons')); ?> </h1> <?php the_content(''); ?> </div><!-- end of .post-entry --> </div><!-- end of #post-<?php the_ID(); ?> --> <div class="post-titles"> <?php else : ?> <h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> <?php edit_post_link(__('<img src="' . site_url('') . '/wp-content/themes/metroons/icons/edit.png" />', 'metroons')); ?> </h2> <?php endif;?> <?php endwhile; ?> <?php endif; ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘First and last post in loop’ is closed to new replies.