Controller81 adlı üyeden alıntı: mesajı görüntüle
Hocam home.php ni kontrol et kodların en başında garip karakterler varsa sil. bendede aynı problem vardı az önce hallettim.
index.php 'yi kastediyorsan onu da inceledim fakat birşey bulamadım. Yinede kodlarını vereyim.

index.php :

<?php get_header(); ?>

<div id="container">

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

<div class="post_header">
     <div class="the_date">
        <div class="date_m"><?php the_time('M') ?></div>
        <div class="date_d"><?php the_time('j') ?></div>
     </div><!-- the_date -->

     <div class="post_headerr">
        <div class="post_title">
        <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
        </div>

        <div class="details">
      <span class="files"><?php _e('Kategori:'); ?> <?php the_category(', ') ?></span> | 
      <span class="comment_list"><?php comments_popup_link('Yorum Yaz', '1 Yorum', '% Yorum'); ?></span>
         </div>

     </div><!-- post_headerr -->
</div><!-- post_header -->

            <div class="entry">

            <?php the_content('Devamını Oku &raquo;'); ?>

                <p class="postmetadata">
<?php edit_post_link('Düzenle'); ?>
                </p>

            </div>

        </div>

    <?php endwhile; ?>

        <div class="navigation">
<?php wp_pagenavi(); ?>
        </div>

        </div>

    <?php else : ?>

        <div class="post">
            <h2><?php _e('Bulunamadı'); ?></h2>
        </div>

    <?php endif; ?>

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>