Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created October 25, 2012 06:21
Show Gist options
  • Save fatihtoprak/3950823 to your computer and use it in GitHub Desktop.
Save fatihtoprak/3950823 to your computer and use it in GitHub Desktop.
wp#7 minimize cache for queries
<?php
# http://www.fatihtoprak.com
$Poz = 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,
));
That makes 2 queries ;)
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment