Skip to content

Instantly share code, notes, and snippets.

@quagliato
Created December 3, 2014 14:13
Show Gist options
  • Save quagliato/a263d38afe36af5ffd59 to your computer and use it in GitHub Desktop.
Save quagliato/a263d38afe36af5ffd59 to your computer and use it in GitHub Desktop.
Iterate posts with pagination
<?php
$args = array(
'paged' => ((get_query_var('paged')) ? get_query_var('paged') : 1),
'posts_per_page' => 4
);
query_posts($args);
while(have_posts()) : the_post();
//the post
wp_reste_postdata();
endwhile;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment