Fetching data from another website results in a slow website?
Basically you got yourself a piece of code that blocks your PHP execution because it relies on external request wp_remote_get() to finish in order to continue. And the worst part is you do it on every request, unconditionally 🙂 Easiest solution for you right now probably is to store all HTML that is generated based … Read more