tester ların sayfasına yazayım.
Bu arada en çok okunan yoksa
en son yazıları wordpress in kendi kodlarıyla yazabiliyorsunuz
Kod :
            <li><h2>En Son Yazılar</h2>
			    <ul>
				<?php
		
						query_posts('showposts=7');
					?>
					<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
					<li><a href="<?php the_permalink() ?>"><?php the_title() ?> </a> </li>
					<?php endwhile; endif; ?>
				</ul>
			</li>