Skip to content

Instantly share code, notes, and snippets.

@jmsmrgn
Created February 7, 2014 05:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmsmrgn/8857947 to your computer and use it in GitHub Desktop.
Save jmsmrgn/8857947 to your computer and use it in GitHub Desktop.
WordPress - Pagination for custom posts 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