Skip to content

Instantly share code, notes, and snippets.

View alaanasssar's full-sized avatar

Alaa nassar alaanasssar

View GitHub Profile
@alaanasssar
alaanasssar / gist:0c0976d2474d994ba9d4fd109af26dbc
Created October 30, 2017 00:47 — forked from billerickson/gist:2047229
Improve performance of WP_Query
<?php
$args = array(
// Normal query goes here //
'no_found_rows' => true, // counts posts, remove if pagination required
'update_post_term_cache' => false, // grabs terms, remove if terms required (category, tag...)
'update_post_meta_cache' => false, // grabs post meta, remove if post meta required
);