Any Tips on How to Speed up a Wordpress Site?

Just found out Bluehost is running it's servers on an old version of PHP, like 6 years old! Could that be one of the reasons they are so slow?
 
You still with them? :p

PM me and I'll send you a special coupon for you to sign up with one of the top hosts, Stablehost. ;)
 
Inboxed mate.
 
Bluehost shared hosting is pretty slow when it comes to handling large numbers of visitors. I can usually get up to 50% speed boost when using Cloudflare with their 2nd compression setting (I forgot the name)
 
In order to speed wordpress.

Using Google chrome, the best is to do a right click, and click on inspection of element.
Then click on network. Refresh the page. You will be able to see the time latency for each file of a particular webpage.
For your particular website, you will be able to take action for each files it calls.

let's imagine a xxxx.js file takes 2 seconds to load. Find if it is mandatory and remove it if necessary. JS files are often the cause of many downtime and long latency. Template developer are all kind of Javascript files to their templates.

Only deep analysis of your page load is profitable. Cache does not fix the root of slow page load.


javascript is often the origin of slow pageload because javascript is a client side technology. it means your device has to do all the hard work.

Lots of template developer puts lots of javascript on their website templates today. For instance, they use scripts for mobiles. They often have scripts for backward compatibility. But if you aren't interested with users who have a super old version of explorer or android, you can remove the call to those js scripts that are loaded everytime.
 
Last edited:
Hey James, go grab this plugin called, P3 (Plugin Performance Profiler) this plugin was developed by Godaddy to analyze your WordPress site to find out what is slowing your site down, I use it and it made a huge difference once I found witch plugins where making the site slow.

Code:
http://wordpress.org/plugins/p3-profiler/
 
Here?s a short summary of the basics you need to know about how to increase your WordPress site speed.
1. Choose a good host
2. Start with a solid framework/theme
3. Use an effective caching plugin
4. Use a content delivery network (CDN)
5. Optimize images (automatically)
6. Optimize your homepage to load quickly
7. Optimize your WordPress database
8. Disable hotlinking and leeching of your content
9. Add an expires header to static resources
10. Adjust Gravatar images
11. Add LazyLoad to your images
12. Control the amount of post revisions stored
13. Turn off pingbacks and trackbacks
14. Replace PHP with static HTML, when necessary
Hope these tips speed up your WordPress site speed. Have a nice day :)
 
Have you checked to see if you're being brute force attacked? A few of my sites got hit recently.

Drop in a plugin called limit login attempts, and see how many lockouts you get in a day. If it's a list as long as your arm...ding ding ding! You're being brute force attacked.

Make sure your username isn't admin. Try Better WP Security - you can change the address of your login page. Better WP security has a login limiter, but I prefer limit login attempts plugin because Better WP security will lock you out permanently, which just aint cool.
 
1. W3TC's minify (cache) file took 2 seconds to load. Configure it properly to reduce load time of your site.
2. If you're using Wordfence plugin then look for a file "humanlog" in wp-admin folder and disable it.
3. Use EWWW Image Optimizer plugin to optimize your images.
 
Have you checked to see if you're being brute force attacked? A few of my sites got hit recently.

Drop in a plugin called limit login attempts, and see how many lockouts you get in a day. If it's a list as long as your arm...ding ding ding! You're being brute force attacked.

Make sure your username isn't admin. Try Better WP Security - you can change the address of your login page. Better WP security has a login limiter, but I prefer limit login attempts plugin because Better WP security will lock you out permanently, which just aint cool.

Cheers mate. Instal WP Better Security plugin. That will stop attacks.
 
I also have no idea on how to speed it up but now I have. It'll be helpful for me.
 
Back
Top