I want to add a css class to every third post display on page. I have tried this code given below:
<?php if (have_posts()) : ?>
<?php $c = 0;
while (have_posts()) : the_post(); $c++;
if( $c == 3) {
$style = 'third';
$c = 0;
}
else $style='';
?>
<div <?php post_class($style) ?> id="post-<?php the_ID(); ?>">