Limiting Posts And Pagination
-
Hi,
I have a homepage which displays all my posts. I’d like to limit this to 5 posts and i also want to include pagination so they can click next and it will load the next 5 on refresh or whatever.
This is what i have so far.
<?php $limitPosts = new WP_Query('posts_per_page=3'); ?>It successfully limits my posts, but again i need a way to load the next 3.
How can i do this?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Limiting Posts And Pagination’ is closed to new replies.