Custom Post Pagination
How to Add Pagination in Custom Post
This is a simple tricks but very important to know how to add WordPress pagination in custom post. We know that to use custom post must need to post query by using loop. Normally the custom post query look like this: <?php $temp = $wp_query; $wp_query = null; $wp_query = new WP_Query(); $wp_query->query('showposts=6&post_type=your_custom_post_type'.'&paged='.$paged); while ($wp_query->have_posts())… Read More