Two modification in Themes of Twentyeleven, which used by this blog:
List most top 10 articles of blog, add following into the index.php
<?php if (function_exists(‘get_most_viewed’)): ?>
<ul>
<?php get_most_viewed(); ?>
</ul>
<?php endif; ?>
View count for each article, add following code into content.php
<span>
<?php if(function_exists(‘the_views’)) { the_views(); } ?>
</span>
<span class=”sep”> | </span>