postviews eklentisi ile yapabilirsiniz.Eklentiyi kurup aktif ettikten sonra kullanmanız gereken kod kısaca,

<ul>
<?php
query_posts('v_sortby=views&v_orderby=desc');
while (have_posts()) : the_post(); ?>
<li>
<img src="<?php echo get_post_meta($post->ID, 'resim',true) ?>" height="60" width="100" alt="" />
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
</li>
<?php endwhile; ?>

</ul>
Temanıza görede düzenleme yaparsınız.