Skip to content

Instantly share code, notes, and snippets.

@otarza
Last active August 29, 2015 13:56
Show Gist options
  • Save otarza/9108801 to your computer and use it in GitHub Desktop.
Save otarza/9108801 to your computer and use it in GitHub Desktop.
// WP_Query arguments
$args = array (
'cat' => '-1',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment