<?php
$i = 0;
//Faz uma consulta dos posts, recebendo o parametro post_type, que pega os
posts do tipo cpt
$post_type = new WP_Query( 'post_type=cpt' );
//Verifica se encontrou posts
if ( $post_type->have_posts() ) :
//Fz um loop nos posts
while ( $post_type->have_posts() ) :
$post_type->the_post();
//Veirica o resto da divisão de $i por 2
if ( $i % 2 == 0 ) : ?>
<div class="post-de-um-jeito" ></div> <?php
else: ?>
<div class="post-de-outro-jeito"></div> <?php
endif;
endwhile;
endif;
?>
But then I would call it a certain category.