Şöyle daha açık görünen kod yazayım büyük ihtimal çoğu temada çalışır
<?php
/*
Template Name:  Son Konular
*/
?>
<?php get_header(); ?>
<div id="left">
<div id="content" class="narrowcolumn">
  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  <div class="post" id="post-<?php the_ID(); ?>">
    <h2>
      <?php the_title(); ?>
    </h2>
    <div class="entry">
     <ul><?php get_archives('postbypost', 2000); ?></ul>
    </div>
  </div>
  <?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>