Skip to content

Instantly share code, notes, and snippets.

@trys
Created September 5, 2014 15:44
Show Gist options
  • Save trys/35583becde541a2a8325 to your computer and use it in GitHub Desktop.
Save trys/35583becde541a2a8325 to your computer and use it in GitHub Desktop.
WP Query - Reference
<?php
$args = array(
'post_type' => 'post'
);
$post_query = new WP_Query( $args );
if ( $post_query->have_posts() ) {
while ( $post_query->have_posts() ) {
$post_query->the_post();
get_template_part( 'content', get_post_type() );
}
}
wp_reset_postdata();?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment