Skip to content

Instantly share code, notes, and snippets.

@anabelle
Created May 3, 2012 16:36
Show Gist options
  • Save anabelle/2587056 to your computer and use it in GitHub Desktop.
Save anabelle/2587056 to your computer and use it in GitHub Desktop.
Change wordpress post per page limit in a template
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts($query_string .'&posts_per_page=12&paged=' . $paged);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment