Empieza con algo simple como:
Código PHP:
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
Ya luego según el Theme que estás armando pondras los DIVs y los Titles segun correspondan, por ejemplo:
Código PHP:
if (have_posts()) :
while (have_posts()) :
the_post();
?>
<h2 id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<?php the_content();
endwhile;
endif;
Y todos los datos que necesites mostrar del post.
Acá tienes guía completa en español.
http://codex.wordpress.org/es:The_Loop_in_Action
De ahí levanté el ejemplo.