Skip to content

Instantly share code, notes, and snippets.

@dompascal
Created November 23, 2013 11:02
Show Gist options
  • Save dompascal/7613283 to your computer and use it in GitHub Desktop.
Save dompascal/7613283 to your computer and use it in GitHub Desktop.
WP - Query with Pagination
<?php $wp_query->query('cat=4&showposts=11'.'&paged='.$paged); ?>
<?php while ( have_posts() ) : the_post();?>
<?php endwhile; ?>
<!-- pagination -->
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div class="pagination">
<?php wp_pagenavi(); ?>
</div>
<?php endif; ?>
<!-- end pagination -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment