I have the same problem width while() in index.php
<?php while (have_posts()) : the_post(); ?>
<div class="entry">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
…how can i mark last entry within this while()?
<div class="entry">…</div>
<div class="entry">…</div>
<div class="entry last">…</div>
I can’t believe that it’s the only solution