Aqui subo el codigo de "Page.php" haber si podeis encontrar el fallo, porque es este archivo no?
Código PHP:
<?php get_header(); ?>
<div id="left">
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="entry">
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Enlace Permanente <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="postinfo"> </p>
<?php the_content('Leer más »'); ?>
<p class="postinfo"><?php edit_post_link('Editar', '', ''); ?></p>
</div></div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Entradas Anteriores') ?></div>
<div class="alignright"><?php previous_posts_link('Entradas Siguientes »') ?></div>
</div>
<?php else : ?>
<h2 class="center">No Encontrado</h2>
<p class="center">Lo sentimos, lo que estás buscando no se ha encontrado.</p>
<?php endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>