How to speed up a wordpress blog, 8 tips

Many things are wrong in article.

First of all, recommendation about Cloudflare and minifying plugins. As a developer, I want to kill people who make such recommendation. because I have tons of support after this. Cloudflare usually has also rocket load extension which compress js files. If you will use it with other minifying plugins - this breaks all js on site in 90%

Changing to nginx is good suggestion, but you will have many troubles after this if you don't have enough skills to prevent them
 
gzip, deflate.
tinypng.
done.
rest? just causing trouble.
 
compressor.io is a good website to compress images. you'd be surprised how small an image file size can get without reducing its quality.

It loads a hell lot faster too.
 
Imho the most important steps:

WP-internal:
W3total cache plugin

Offline:
Image optimization: RIOT tool,
Code:
http://luci.criosweb.ro/riot/

Server-side:
php7, different caching methods, .htaccess if you are familiar
 
I have actually seen many errors results on several of my sites using Cloudflare. Quite honestly, I felt that it was hurting my sites more than it was helping them. So I disabled it. I also did a fair amount of research around the web and found a lot of people complaining about Cloudflare. Perhaps it works for some people, but I just haven't seen the benefits. Seems like my sites perform better without Cloudflare - at least from what I've seen on my end e.g. less outages, faster load times, less error messages, etc.


Many things are wrong in article.

First of all, recommendation about Cloudflare and minifying plugins. As a developer, I want to kill people who make such recommendation. because I have tons of support after this. Cloudflare usually has also rocket load extension which compress js files. If you will use it with other minifying plugins - this breaks all js on site in 90%

Changing to nginx is good suggestion, but you will have many troubles after this if you don't have enough skills to prevent them
 
I had the far biggest leap in rankings by speeding up the site. Thanks for sharing.
 
9. Use PHP 7
10. Optimize Webserver (Apache for example remove unnecessary modules)
11. Cache DB queries
12. Get a decent hosting
13.a Cut down HTTP requests
13.b Reduce External HTTP Requests
14. Remove plugins for stuff you can achieve with simple builtin logic
15. Use a theme or built your own, that doesn't use complex logic for simple things
16. Enable Gzip Compression
17. Load Scripts t page bottom
18. Add an expires header to static resources
19. Control the amount of post revisions stored
20. Turn off pingbacks and trackbacks
21. Split Comments into Pages
22. Use Excerpts on Homepage and Archives
23. Split Long Posts into Pages
24. Prefetch Commonly Used Domains

Have fun.

Thanks Mate ..... Well-Described steps
 
Back
Top