Aca va el codigo completo de la parte que corresponde a la informacion del post (no inclui paginadores y todo lo demas para no hacerlo tan confuso), el archivo es el single.php.
Código PHP:
Ver original<!-- INICIA EL POST -->
<div class="post" id="post-<?php the_ID(); ?>">
<!-- INICIO FECHA DE PUBLICACION -->
<acronym class="published" title="<?php the_time('F jS, Y'); ?>"> <span class="pub-month">
<?php the_time('M'); ?>
</span> <span class="pub-date">
<?php the_time('j'); ?>
</span> </acronym>
<!-- TERMINA FECHA DE PUBLICACION-->
<!-- INICIA EL TITULO -->
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?>
</a>
<?php edit_post_link('*', '<sup>', '</sup>'); ?>
</h2>
<!-- TERMINA EL TITULO -->
<!-- INICIAN DETALLES -->
<small> Publicado en
<?php the_category(', ') ?>
por
<?php the_author() ?>
y tiene
<a href="#gocommentForm"><?php comments_number(__('0 Comentarios'), __('Un Comentario'), __('% Comentarios')); ?></a>
</small>
<!-- TERMINAN DETALLES -->
<!-- INICIA CONTENIDO DEL POST -->
<div class="entry_single">
<div class="texto_img">
<a title="my caption" rel="lightbox[uniqueID|filename]" href="images/image-1.jpg">
<?php wp_smart_image('size=med&type=single') ?>
</a>
</div>
<?php the_content('Continuar leyendo »'); // Contenido?>
<?php link_pages('<p><strong>Páginas:</strong> ', '</p>', 'number'); // El uso de paginas internas en el post ?>
</div>
<!-- TERMINA CONTENIDO DEL POST -->
</div>
<!-- TERMINA EL POST -->