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
WordPress Development
How to Add Pagination on Your WordPress
Today I am going discuss about WordPress pagination. Do you may know that pagination is an important factor to show your WordPress blog post. In this article an trying to describe two type of pagination, normal pagination and numbering pagination. Normal Pagination Normal pagination show that pagination which show only “Previous post” and “Next post”.… Read More