How would I go about paginating this?
<?php $recent = new WP_Query('cat=1,35,32,27,42,37,3,8,4,7,26,36,6,5'); while($recent->have_posts()) : $recent->the_post();?>
Whenever I click on a different page other than page 1, the posts just stay the same.
Please help. Thanks :)