Skip to content

Instantly share code, notes, and snippets.

@pdewouters
Created October 24, 2012 11:07
Show Gist options
  • Save pdewouters/3945494 to your computer and use it in GitHub Desktop.
Save pdewouters/3945494 to your computer and use it in GitHub Desktop.
WP_Query on a diet
// From Alex King prez
$example = new WP_Query(array(
'posts_per_page' => 2,
'orderby' => 'date',
'order' => 'DESC',
'no_found_rows' => true,
'update_post_term_cache' => false,
'update_post_meta_cache' => false,
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment