aynı sorun bendede mevcut index.php dosyam
Alıntı
<?php get_header(); ?>
<div id="yazi-icerik">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="yazi">
<h2 class="yazi-adi"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="yazi-bilgi"><span class="yazi-yazar"><b>Tarih:</b> <?php the_time('j F Y') ?></span>∙ <span class="yazi-kategori"><b>Kategori:</b> <?php the_category(', ') ?></span>∙ <span class="yazi-yorum"><?php comments_popup_link('Yorum Yok', '1 Yorum', '% Yorum'); ?></span></p>
<div class="thumb-resim"><img class="thumb" alt="" src="<?php echo get_post_meta($post->ID, 'resimcik', true); ?>" /></div>
<?php the_content(''); ?>
<span class="devaminioku"><a href="<?php the_permalink()?>">Devamını Oku »</a></span>
</div>
<!--/post -->
<?php endwhile; ?>
<p class="yazi-diger"> <span class="onceki"><?php next_posts_link('Önceki Yazılar') ?></span> <span class="sonraki"><?php previous_posts_link('Sonraki Yazılar') ?></span> </p>
<?php else : ?>
<h2>Bulunamadı</h2>
<p>Üzgünüm, fakat aradığınız şey burada değil.</p>
<?php endif; ?>
</div>
<!--/content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>