Created
April 5, 2019 18:32
-
-
Save dsebao/969d2a1c62cc03d5b6d7fb6cd77f7412 to your computer and use it in GitHub Desktop.
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 | |
| //define post type | |
| 'post_type' => 'post', | |
| //Disable cache | |
| $query = get_posts( array( 'posts_per_page' => 1, 'cache_results' => false ) ); | |
| //No terms cache | |
| 'update_post_term_cache' => false, | |
| //Meta cache | |
| 'update_post_meta_cache' => false, | |
| //No pagination | |
| $query = new WP_Query( array( 'posts_per_page' => 1, 'no_found_rows' => true ) ); | |
| //Only post ID | |
| $query = get_posts( array( 'posts_per_page' => 1, 'fields' => 'ids' ) ); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment