/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $count; while ( have_posts() ) : the_post(); $count++; $zebra = ($count % 2) ? ' odd' : ' even'; ?> <?php endwhile; // End the loop ?>