@macwise
use this when doing the query:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("category_name=XXX&paged=$paged"); ?>
this worked for me so i hope it does for you as well. the other guys here either didn’t know what they were talking about or didn’t understand you correctly
@stvwlf
thank you so much for that piece of code. that fixed my issue with paginating custom category pages. before the next link would simply take me to the same posts that were listed at first.
again, thanks A LOT!
@tweeeb
man you rock!
your post basically solved my issue that I have been trying to solve for 2 days
the page2cat plugin simply didn’t work for me