Ana Sayfa

<?php $the_query = new WP_Query('orderby=post_date'); while ($the_query->have_posts()) : $the_query->the_post(); ?>
<div class="son yazılar">
     <div class="tarih" style="float:left;">
         <a href="<?php the_permalink(); ?>"><?php the_time('j F Y ') ?> | </a>
     </div>
     <div class="kat" style="float:left;">
         <a href="<?php the_permalink(); ?>"><?php the_category(', ') ?></a>
     </div>
     <div class="baslik" style="float:left;">
           <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
     </div>
</div>
<?php endwhile; ?>