Wordpress eklentisiz Son 5 yazıyı göstermek için aşağıdaki kodu single.php dosyası içerisine istediğiniz yere ekleyebilirsiniz. İçeriği kendinize göre css ile geliştirebilirsiniz.
<?php query_posts('showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?><li>
<a href="<?php the_permalink() ?>" title="<?php the_title();?>""><?php the_title(); ?></a>
</span>
</li>
<?php endwhile;?>