esto es lo que tengo en page.php donde se mostraria todos los post:
Código PHP:
<div id="wrapper-dos">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php the_time('F jS, Y') ?> | <?php the_author() ?>
<?php endwhile; else: ?>
<h2>No encontrado</h2>
<p>Lo sentimos, intente utilizar nuestro formulario de búsquedas.</p>
<?php endif; ?>
</div><!-- end of wrapper-->