Skip to content

Instantly share code, notes, and snippets.

@Umbrous
Created December 4, 2016 15:34
Show Gist options
  • Save Umbrous/71ea7bac1591618318d7f5d46508b466 to your computer and use it in GitHub Desktop.
Save Umbrous/71ea7bac1591618318d7f5d46508b466 to your computer and use it in GitHub Desktop.
Paginate Custom Post Types
<?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('&laquo; Newer') ?>
<?php next_posts_link('Older &raquo;') ?>
</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