Para colocar cada cosa con sus respectivas etiquetas HTML podés hacerlo así:
Código PHP:
Ver original<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?>
<div id="contenido">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
Así como trajimos por separado al título con the_title() y a the_content(), podemos buscar las funciones correspondientes al nombre del autor, fecha de publicación, categoría, tags, etc, etc.
Para llamar a las funciones debés abrir y cerrar las llaves PHP de este modo:
<?php y
?>.