Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created April 5, 2019 18:32
Show Gist options
  • Save dsebao/969d2a1c62cc03d5b6d7fb6cd77f7412 to your computer and use it in GitHub Desktop.
Save dsebao/969d2a1c62cc03d5b6d7fb6cd77f7412 to your computer and use it in GitHub Desktop.
<?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