peAce25 adlı üyeden alıntı: mesajı görüntüle
single.php dosyanızda
<p>Yayınlanma Tarihi: <?php the_time('d F Y') ?></p>
gibi bir kod varmı kontrol ediniz
single.php içeriği

<?php 
    get_header();
    if (have_posts()) : the_post();
?>
<div class="page_bread" style="background-image:url(<?php echo cs_get_option('pageback'); ?>)">
    <div class="wrap">
<?php
        if (function_exists('temavadisi_navigasyon')) 
            temavadisi_navigasyon();
?>
    </div>
</div>
<div class="page_title">
    <div class="wrap">
        <h1><?php the_title(); ?></h1>
    </div>
</div>
<div id="yazi_content">
    <div class="wrap">
    <div class="content col span8">
        <div class="yazi_icerik"><?php the_content(); ?></div>
        <?php if(has_tag()) { ?>
        <div class="etiketler">
        <?php 
            the_tags( '<i class="icon-tags"></i> ', ', ', '');
        ?>
        </div>
        <?php } ?>
        <?php get_template_part('/parts/paylas'); ?>
        <?php comments_template(); ?>
    </div>
        <?php get_sidebar(); ?>
    </div>
<div class="clear"></div>
</div>
<?php 
    else :  endif;
get_footer();
?>