What is the maximum number of posts a WordPress loop can work with?
There is no inherent technical limitation to how many posts can WP loop query. However there is always resources (CPU and memory) ceiling of specific server and configuration. If you are leaking/eating memory in any way (for example adding up some results with every post iteration) it will get exhausted quickly. WP query class (wpdb) … Read more