Hi, I´m trying to offset 10 post in my category page with pagination. I tried many ways but the only think I get was the same 10 offset post in all my pages.
Anyonw can help?
Hi, I´m trying to offset 10 post in my category page with pagination. I tried many ways but the only think I get was the same 10 offset post in all my pages.
Anyonw can help?
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=1&paged=$paged"); ?>
Change cat=1 to whatever you need it to be. Or take cat=1& out altogether if you want all categories
Hi,
I had this same problem but i'm already using a query_posts with an array. How would I achieve the same above result?
You must log in to post.