Created
April 23, 2014 17:42
-
-
Save kohnmd/11225620 to your computer and use it in GitHub Desktop.
WordPress WP_Query on a diet (performs only 2 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 | |
// Found here: http://alexking.org/speaking/core-competency/index.php#/queries-04-wp-query-modifiers | |
$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