single.php de burada
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<p class="browse"> Buradasınız : Ana Sayfa //
<?php the_category(', ') ?>
//
<?php the_title();?>
</p>
<?php the_title('<h3>', '</h3>'); ?>
<p class="postmeta">Yazan
<?php the_author_posts_link(); ?>
Tarih
<?php the_time('d F Y') ?>
|
<?php comments_popup_link('Yorum Yapın', '1 Yorum', '% Yorum'); ?>
</p>
<div class="entry">
<?php the_content('Devamını Oku...'); ?>
<div class="clear"></div>
</div>
<!--end: entry-->
<p class="browse">
<?php the_tags('Etiketler: ', ', ', ''); ?>
<?php edit_post_link('Düzenle', ' [ ', ' ] '); ?>
</p>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
<!--end: content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>