Tema üzerinde son yaptıgınız degişiklik veya eklediginiz bir eklenti varsa onları tekrar eski haline getirin muhtemelen düzelecektir

Sorun temanızın index php dosyasından kaynaklı son zamanda index.php,de bir degişiklik yaptıysanız ondan olur admin panele girin görünümden editörü seçin kullandıgınız temanın index.php dosyasını kontrol edin

Temanızın index.php içerigi şu şekilde olacak ben temayı indirip index.php,yi kopyaladım yalnız kullandıgınız tema türkçe ise bu benim verdigim içerik ing oldugu için ing olan yerleri kendiniz düzenlemeniz gerekiyor

bu içerigi index.php içerisine digerini silip ekleyin

<?php get_header(); ?>    
    <div id="wrapper">
    
        <div id="content-wrapper">
        
            <div id="content">
            
            
            
                <?php if (have_posts()) : ?>

            <?php while (have_posts()) : the_post(); ?>

        
                <div class="post-wrapper">
                

                    <div class="date">
                        <span class="month"><?php the_time('M') ?></span>
                        <span class="day"><?php the_time('j') ?></span>
                    </div>

                    <div style="float: right; width: 404px; clear: right; margin-top: 15px; margin-bottom: 15px; padding-top: 10px;  margin-left: 5px;">
            <span class="titles"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></span>
</div><div style="clear: both;"> </div>

            <div class="post">

            <?php the_content('Read the rest of this entry &raquo;'); ?>

            </div>
            
            <div class="post-footer">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?> <?php comments_popup_link('No Comments &raquo;', '1 Comment &raquo;', '% Comments &raquo;'); ?></div>

            </div>

            <?php comments_template(); ?>

            <?php endwhile; ?>

               <p class="pagination"><?php next_posts_link('&laquo; Previous Entries') ?> <?php previous_posts_link('Next Entries &raquo;') ?></p>

            <?php else : ?>

            <h2 align="center">Not Found</h2>

            <p align="center">Sorry, but you are looking for something that isn't here.</p>

            <?php endif; ?>
            
            
    
            </div>
        
        </div>
        <?php get_sidebar(); ?>    
        <?php get_footer(); ?>   
    
</body>
</html>