malesef o kodu bulamadim index.php de.
kodlar bunla;
Alıntı
<?php get_header(); ?>
<!-- BEGIN content -->
<div id="content">
<h2 class="title"> Bilgiler</h2>
<?php
if (have_posts()) :
while (have_posts()) : the_post();
$arc_year = get_the_time('Y');
$arc_month = get_the_time('m');
$arc_day = get_the_time('d');
?>
<!-- begin post -->
<div class="post f">
<div class="thumb"><a href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'full', 'alt="' . $post->post_title . '"'); ?></a></div>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<p class="details"><a href="<?php the_permalink(); ?>">Devamını oku »</a> | <?php comments_popup_link('Yorum Yok', '1 Yorum', '% Yorum'); ?></p>
</div>
<!-- end post -->
<?php endwhile; ?>
<p class="postnav">
<?php next_posts_link('Önceki Yazılar'); ?>
<?php previous_posts_link('Sonraki Yazılar'); ?>
</p>
<?php else : ?>
<div class="notfound">
<h2>Bulunamadı</h2>
<p>Üzgünüm, aradığınız şey burada değil.</p>
</div>
<?php endif; ?>
</div>
<!-- END content -->
<?php get_sidebar(); get_footer(); ?>