Created
October 25, 2012 06:21
-
-
Save fatihtoprak/3950823 to your computer and use it in GitHub Desktop.
wp#7 minimize cache for queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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