Long delay on document load with wordpress Long delay on document load with wordpress wordpress wordpress

Long delay on document load with wordpress


A cache plugin probably will solve your problem since no query will be called to db unless something in the page changed.

I used 2 of them and both speed up sites. (But only use one, you cant use both at the same time.)

  1. Wp-rocket http://wp-rocket.me/
  2. Wordpress super cache https://wordpress.org/plugins/wp-super-cache/


I was able to solve the problem with your input. It turns out that it was a image slider plugin (FlexSlider) that was re-generating the images to fit the size of the element which was slowing it down so much. There were 7 large images that it re-generated on the server side as the page was requested. All I had to do was stop the plugin from resizing the images by leaving it to the default setting and I wrote some javascript to do the same thing but locally and it sped up the loading time drastically. It's now loading at under 3 seconds when it was loading at around 10.

Thanks @drew010