Let say that i had 20 post. at index page there were the last 10 post i had made (post 11 till 20).
the question is... how to put in the sidebar the oldest 10 post (post 10 to 1 )
Let say that i had 20 post. at index page there were the last 10 post i had made (post 11 till 20).
the question is... how to put in the sidebar the oldest 10 post (post 10 to 1 )
Use the query_posts template tag.
In this case, you would put in sidebar.php of your theme
<?php query_posts('showposts=10&offset=10'); ?>
Hahahaha... thanks.
Its work
This topic has been closed to new replies.