At my wordpress website Chronic Commissions at custom template wp-paginate is not working. I already have placed wp-paginate code at my custom template.
<div class="navigation">
<?php if(function_exists('wp_paginate')) { wp_paginate();} ?>
</div>
And my custom template wordpress blog query code is
$newPosts->query('cat=22&posts_per_page=>3&order=ASC');
while ($newPosts->have_posts()): $newPosts->the_post();
I am not sure why wp-paginate is not working with custom template.