Kodlar bu :
<?php get_header(); ?>
<div id="icerik">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="gonderi">
<div class="baslik"><h1><a href="<?php the_permalink('') ?>" title="<?php the_title(''); ?>"><?php the_title(''); ?></a></h1></div>
<div class="bilgi">
<div class="yazar"><img src="<?php bloginfo('template_url'); ?>/img/yazar2.png" alt="yazar" /><?php the_author(); ?></div>
<div class="kategori"><img src="<?php bloginfo('template_url'); ?>/img/kategori2.png" alt="kategori" /><?php the_category(' , '); ?></div>
<div class="tarih"><img src="<?php bloginfo('template_url'); ?>/img/takvim2.png" alt="tarih" /><?php echo human_time_diff( get_the_time('U'), current_time('timestamp') ) . ' önce'; ?></div>
<div class="yorum"><img src="<?php bloginfo('template_url'); ?>/img/yorum2.png" alt="yorum" /><?php comments_popup_link(__('Yorum yok'), __('1 yorum'), __('% yorum'), '', __('Yorumlara kapalı')); ?></div>
</div>
<a href="<?php the_permalink('') ?>" title="<?php the_title(''); ?>">
<div class="i-resim"><?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } else { ?>
<img src="<?php bloginfo('template_url'); ?>/resimler/gorselyok.png" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" width="400" height="300" /><?php } ?>
</div>
</a>
<div class="i-yazi"><p><?php wpn_content_limit(get_the_content(),450); ?></p></div>
<div class="bilgi">
<div class="tag"><img src="<?php bloginfo('template_url'); ?>/img/etiket2.png" alt="etiket" /><?php the_tags(''); ?></div>
</div>
<div class="devam"><a href="<?php the_permalink(); ?> ">Devamını Oku</a></div>
</div>
<?php endwhile; else: ?>
<?php _e('Aradığınız yazı yok veya taşınmış.'); ?>
<?php endif; ?>
</div>
<div id="sidebar">
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>