Pek fazla bilgim olduğu söylenemez ama page.php'deki kodunu şu şekilde değiştirirsen belki düzelebilir;
<?php get_header(); ?>
<div class="left">
<div class="right_side">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<div class="entrytext">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
</div>
</div>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
<div id="yorumlar">
<?php comments_template(); ?>
</div>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<div class="header_bottom"></div>
<?php get_footer(); ?>