Reverting back....
This is the code i just tried
Code:
<div class="sideblock">
<h3>Recent Posts</h3>
<?php $myposts = get_posts('numberposts=10&offset=1');
foreach($myposts as $post) :?>
<li><a href="<?php the_permalink(); ?>"><?php the_title();?></a></li>
<?php endforeach; ?>
</div>