I am just finishing off a custom wordpress theme, and was wanting to make a change to the way Pagination works in the index.php file. Currently when I click the pagination links it will take me to a new page, to display the other posts (assuming I have set in the settings for it to display less than the total number of posts). This is fine, however ideally I would like the posts to just pop up at the bottom, underneath the ones already there from the loop.
Currently I am using:
<?php next_posts_link('Older Posts'); ?>
<?php previous_posts_link('Newer Posts'); ?>
If I haven't explained this well enough let me know and I will try elaborate.
Thank you!