Hai,
First section of your template display latest five posts
<?php $my_query = new WP_Query(‘showposts=5’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h4>” title=”<?php the_title(); ?>”><?php the_title(); ?></h4>
<?php the_content(” More…”,TRUE,”); ?>
<?php endwhile; ?>
second section of your template display old five posts
<?php $my_query = new WP_Query(‘showposts=5&offset=5’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h4>” title=”<?php the_title(); ?>”><?php the_title(); ?></h4>
<?php the_content(” More…”,TRUE,”); ?>
<?php endwhile; ?>
Thank you