index.php den bu şekilde yapabilirsin (kod kalabalığından arındırdım sen temana göre ayarla)

<?php if (have_posts()) : $sayi=0; ?>
           <?php while (have_posts()) : the_post(); $sayi++; ?>
<?php if ($sayi<3){ $class="genis";}else{ $class="dar";}  ?>
            <div class="<?php echo $class; ?>">
                <h2><?php the_title(); ?></h2>
                    <?php the_content(); ?>
            </div>

        <?php endwhile; ?>
    <?php endif; ?>
edit: $i $sayi olacak özür.