Created
December 4, 2016 15:34
-
-
Save Umbrous/71ea7bac1591618318d7f5d46508b466 to your computer and use it in GitHub Desktop.
Paginate Custom Post 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