Comments on: How to handle large queries in WordPress https://pluginrepublic.com/how-to-handle-large-queries-in-wordpress/ WooCommerce Plugins Thu, 13 Jan 2022 20:33:20 +0000 hourly 1 By: Chris Allen https://pluginrepublic.com/how-to-handle-large-queries-in-wordpress/#comment-168604 Thu, 13 Jan 2022 20:33:20 +0000 https://pluginrepublic.com/?p=2639#comment-168604 Very useful post, I’m working on a plugin myself and I need to process potentially unlimited numbers of posts. This technique looks great, and I’m implementing it now.

PS. theres a missing image just under the first paragraph of the “Using AJAX with WP_Query” section.

]]>
By: rigosan https://pluginrepublic.com/how-to-handle-large-queries-in-wordpress/#comment-6706 Sat, 03 Mar 2018 08:59:07 +0000 https://pluginrepublic.com/?p=2639#comment-6706 Wow!

Maybe you can use ‘cache_results’ => false
https://wordpress.stackexchange.com/a/166699/57674

I also add:
‘update_post_term_cache’ => false,
‘update_post_meta_cache’ => false,

Cheers!

]]>