Next Previous Links on Front Page
I want to add Next Previous links on the home page and have them go to the next page of videos for the More Videos section. I understand that they won't work because of the query being used.
I thought, although admittedly I don't know much about this, that adding $query_string.before "cat= would work.
<?php $recent = new WP_Query("cat=".$featured_vid_2."&showposts=".$fea tured_vid_2_num); while($recent->have_posts()) : $recent->the_post();?>
And at first it seemed like the Next Previous links were working. I noticed, however, that 2 posts that weren't in the category set for More Videos were being pulled and that the Next link stopped after the first three pages, even though there were still more posts in that category.
Can anyone assist with a better way (or a working way :-) to do this?
Thanks!
|