airweb adlı üyeden alıntı: mesajı görüntüle
page.php sayfasına bak kardeşim öyle ise ;
Hocam Page'de Hiç Ona Benzer birşey Bulamadım

<?php get_header(); ?>

<?php include(TEMPLATEPATH."/left.php");?>
<?php include(TEMPLATEPATH."/right.php");?>

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class="center-widget-title"></div>
    <div class="center-widget">
         <div id="post-<?php the_ID(); ?>">

              <h2 class="post-title">
                 <?php the_title(); ?>
              </h2>

	      <div class="post-content">
	           <?php the_content('<p class="serif">' . 'Continue Reading...' . '</p>'); ?>
              </div> <!-- Post Content -->
	      <?php link_pages('<p><strong>' . 'Pages' . ':</strong> ', '</p>', 'number'); ?>
         </div>  <!-- post-id -->
    </div> <!-- center-widget -->

    
<?php endwhile; else: ?>
    <div class="center-widget-title"></div>
    <div class="center-widget">
         <h2>Error 404 - Page Not Found</h2>
	 <p>Sorry! but the page you requested has either been deleted or does not exist.</p>
    </div> <!-- center-widget -->
<?php endif; ?>
<?php get_footer(); ?>