Pagination
I have create custom post type and create archive page for that custom post type.
Things are going well however I am not able to see the pagination link eventhough i have more than 10 posts and just display 10 post only.
Since I am not sure how to get classipress built in pagination function and I had activated the "
WP-Paginate" and paste the code
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?> after endwhile loop. Still no luck.
Is there any way to call the classipress built in pagination function or get the
WP-Paginate Function to work in my new archive page .
Thanks in advance