Created
February 7, 2014 05:54
-
-
Save jmsmrgn/8857947 to your computer and use it in GitHub Desktop.
WordPress - Pagination for custom posts types
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$temp = $wp_query; | |
$wp_query = null; | |
$wp_query = new WP_Query(); | |
$wp_query->query('showposts=6&post_type=news'.'&paged='.$paged); | |
while ($wp_query->have_posts()) : $wp_query->the_post(); | |
?> | |
<!-- LOOP: Usual Post Template Stuff Here--> | |
<?php endwhile; ?> | |
<nav> | |
<?php previous_posts_link('« Newer') ?> | |
<?php next_posts_link('Older »') ?> | |
</nav> | |
<?php | |
$wp_query = null; | |
$wp_query = $temp; // Reset | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment