HostSEO Blog

Stories and News from IT Industry, Reviews & Tips | Technology Blog


Website load speed | Best Ways To Speed Up Your WordPress Site

  • Category : WordPress
  • Posted on : Jun 13, 2016
  • Views : 3,005
  • By : Tadashi P.

Is your WordPress website load speed slow ? If yes, we need to work on that.

Ohh and if your website loads pretty quickly, can it be made even quicker – Every millisecond literally makes a difference. We can measure your site’s performance and see if there’s anything else to make it just a wee bit faster. But we’ll get to that in a bit.

Before I tell you how you can make your website a great deal faster, I’ll try to establish the importance of having a fast loading website.

Does Site Speed Matter ?

Your website load speed matters a great deal to ensure good search engine ranking and a great user experience. It is a known fact that Google’s search algorithm includes your page load times as one of the many parameters while calculating pagerank. Let’s have a look at what Google has to say about site speed and how it might affect your website and the size of your audience.

Google’s Take On Speed

At Google, they created an experiment to replicate the slowness that accompanies a website or webpage with a bad page load speed.

Google’s team did this by creating a system where the speed is deliberately decreased by injecting a server side delay, which translates to extending the processing time before and during the time that results are returned to the browser.

From the user perspective it doesn’t matter much whether the results are returned slowly or the ability of their browser to process those results is slow. In effect, you wouldn’t know that it is your browser that is slow and not the webpage, but it creates the same effect as you would if you were on a webpage that loads slowly.

By dropping the load speed from 100 milliseconds to 600 milliseconds, there was a decrease in the number of searches by 0.2% to 0.6%, results averaged over four to six weeks. You might be tempted to question the significance of these results.

It was also discovered that those exposed to a 200 millisecond delay performed 0.22% less searches in the first three weeks and 0.36% less searches in the second three week period. And with a 400 millisecond delay, the same results followed a decrease of 0.44% and 0.76% in the first and second three week periods. As you can imagine such an impact in the number of searches performed is huge given the scale of Google web search.

Apart from Google several major companies including AOL, Microsoft, Bing and Shopzilla have recognized the importance of having websites that load quickly. You can read more about it here.

Website Load Speed Matters – User Experience

Now forget the numbers, how much fun might using a slow website be ? How many times have you visited a slow website and never bothered to visit again ? How many times have you cursed your internet connection when it goes into a slumber ? Slow websites are no fun.

Before we get into “making your site” faster, how fast is it to begin with ? Let’s look at few tools to help us out!

How Well Does Your Website Fare ?

We need to measure current site performance, only then will be able to measure any improvements in performance. You can use one of the following,

To keep track of your website regularly, you can access site performance under labs via your Google Analytics account. If you’ve haven’t yet added your website to GA, you should. Apart from these methods, most hosting services also provide access to basic page load speed information.

Now, let’s look at about a dozen things you can do to make your website faster.

1. Hosting Service Selection

Whilst there are multiple things that you can do to enhance your site’s performance, such methods have their limitations. Tweaking software will only help optimize site performance. But when it really comes down to it, nothing beats the best hardware. Shared hosting is an option for low traffic sites but as your site traffic grows you need to scale your hardware. Virtual Private Hosting, Dedicated Hosting and Managed Hosting are options used by high/medium traffic sites. Dedicated hosting is reserved for the biggest sites with millions of daily visits. VPS is designed for the technically adept and Managed WordPress Hosting is for the non-tech savvy running an online business.

 

2. Use The Best Caching Plugin

(Assuming you use anything other than Managed WordPress Hosting where caching is provided in-house by your hosting company)

WP Rocket is a premium best selling caching plugin that works efficiently to optimize your site for speed. There are many WP caching plugins which in my opinion, a bit too complicated for a WP newbie. And the complexity of options is good for expert and intermediate level WP user. WP Rocket isn’t too difficult to figure out and use.

WP Rocket performs page caching to decrease load speeds, cache preloading to help with site indexing by search engines, images load only upon request (when you scroll down, not when a page first loads), file compression to convert HTML, JS & CSS to static files and the plugin is rather developer friendly.

When I was writing a post about the Top 6 Caching plugins, one of the conclusions I came to was it was very difficult to compare caching plugins. The reason every plugin is a bit different and configuring every plugin optimally is not easy, if you do not set the same configurations on all the plugins it makes the plugins impossible to compare. Instead I basically asked our readers to go with the plugin they felt was the easiest to use. And do read the post about Top 6 Caching Plugins, if you want more options including freemium and free caching plugins.

More info / Download If you do not use WP Rocket, a few things to consider. This is a breakdown of functions that would otherwise be performed by a caching plugin. Ensure that your alternate caching solution provides of all these functions. If not use a free caching plugin plus one or two other plugins to replicate most of WPRocket’s features.

A free caching plugin normally accomplishes the following. 

Minify HTML, CSS & Javascript

All that blank space, comments, new line characters and anything redundant in your code that makes it easier on the eye without purpose is completely useless to a server and the IP that trying to reach out to your servers requesting your site.

Remove all this stuff with a free caching plugin and your site will be better off in terms of performance.

Minimize the number of HTTP requests

You can reduce the number of requests made to your site’s servers. Every time someone visits your site, they request your website’s files. This includes HTML files, CSS and JS files. If you have multiple files of each file type, then for every individual file a request is sent to your servers.

Having a high number of files requiring multiple server requests is not efficient at all. You can reduce this by combining JS scripts, HTML and CSS files together. A free caching plugin will suffice.

Replace PHP With Static HTML

Also known as super caching where in the PHP is completely bypassed and files are served in HTML. Super Caching is performed with mod_rewrite and is certainly among the fastest caching methods available to your site. The difference between supercached static files served by PHP and one served in full HTML is imperceptible, but it does make your site faster. Again as before free caching plugins should be sufficient to accomplish super caching served by HTML.

GZIP Compression

Compress your code, essentially make a text file containing code smaller. Your website’s files are simply compressed which helps reduce your bandwidth usage and obviously lowers load times, once the compressed file is received at the browser end, it can be easily read. This function can be accomplished by a free caching plugin like W3TC.

Browser Caching

For static content like JS, CSS and images, these can be downloaded and stored on a visitor’s browser. This gets downloaded when the visitor visits the site the first time around and is fetched from the browser cache every time it is required thereafter for sometime at least. Otherwise, it would have to be downloaded again.

Caching involves configuring your plugin and this may be a bit daunting to our readers who are not yet familiar with WordPress. 

A free caching plugin may not help with lazy loading. And you’ll either need a premium caching plugin or other plugins to make up for the shortcomings of a free caching plugin. So if you intend to use a free caching plugin, consider using the following one of lazy load plugins in tandem. 

Use Lazy Load For Text, Videos & Images

Lazy load for images ensures that you load the image when it is about enter the visitor’s screen as he/she scrolls down. By doing that the site’s load times come down quite a bit, seeing as images are pretty data heavy relatively.

Generally caching lazy load is a feature that accompanies a premium caching plugin, not a free plugin. So if you aren’t using a premium caching solution with lazy image loading, you can use BJ Lazy Load or Unveil Lazy Load.

If you are interested in activating the same feature for videos, try Lazy Load For Videos.  And for overall management of lazy loading for all your site’s videos, images and iframes, you can check out Lazy Load XT.

3. Choose The Right Framework

Frameworks form the skeleton upon on which you build your site’s appearance and eventually display your content. A good framework is important to ensure good site performance. The theme which helps design and modify the appearance of your site also contributes to site load time. A flashy multimedia rich theme with a bulky framework does not make for a fast website.

In terms of performance when it comes to site speed, theme houses like Headway ThemesStudioPress (Genesis) and iThemes produce themes based a strong and lean framework. And upon this framework they create color filled themes intended for specific site types and niches. To a great extent the success of the aforementioned theme houses can be attributed to their WP frameworks on which they build their themes. I’d recommend any of the aforementioned theme houses’ frameworks.

4. Use A CDN

CDNs or Content Delivery Networks help deliver static files of your website faster to your visitors from a server location much closer to them than your site’s servers. This makes a website that is normally fast seem even faster. A CDN ensures that your visitor hits the cache rather than reach your servers. And accessing the cache as opposed to requesting site data from servers is much faster.

Almost all high traffic websites now use a CDN for their static content. CDNs like MaxCDN have solid state drives strategically located all over the globe to provide the ideal global content delivery service to websites with a wide demographic reach, as you can see from the image below.

 

Unlike normal host providers servers, a CDN’s servers are tailor made to deliver static content in the least possible time. They also have tieups with popular telecom companies to ensure that your site’s load time is not affected by any interruption or delay on the part of the telecom provider.

If you use a CDN, your site server’s bandwidth usage will see a sizeable drop and it will further help bring down site load times.

5. Optimize Your Site’s Database

Use a WordPress database optimization plugin and get your site’s database in order. WP-Sweep is a powerful plugin that performs multiple functions involved in the WP-Spring Cleaning process.

WP Sweep removes redundant post revisions, comments (spam & unapproved), any form of orphaned and duplicated metadata (user, comment and post) and unused terms from your WordPress database. There are other database optimization plugins like WP-DB Manager and WP Optimize, but WP Sweep has a significant edge over them. WP Sweep performs WordPress delete commands on data so there is no orphaned data left behind as in the case of the other two plugins which run MYSQL queries.

Your database optimization plugin will get rid of:

  • Spam, Unapproved & Deleted Comments – Comments can pile up like a mountain in your wp-database if you allow for it to happen. Optimizing your WP database from time to time will prevent this from happening.
  • Duplicate and Orphaned data on your WordPress database – Duplicate content is a burden on your servers, one that they need not bear. Orphaned data affects your site’s database by occupying row upon row and it contributes nothing to your site, hence the term “orphaned”. Duplicate content and orphaned data serve no purpose, rid them both of your site.
  • Unnecessary post revisions – Multiple post revisions are unecessary and they can add to quite a lot, delete them.

If you decide to spring clean your WordPress, you should delete unused terms, images, themes, plugins, fix broken links and keep your site’s database in tip top shape. Since WP is a database driven system, your database health does play a role in your site’s performance. While a database optimization should be sufficient for now, there may be one or two other things you may want to do.

I can go on further about how and what you should do to keep your WordPress database clean but that is a pretty big job in and of itself and I can’t really add much more here, but if you’d like to read further. 

6. Compress Images

Images are bulky when compared to text, they occupy much more space on your wp-content folder than they should be allowed to. Compressing your images will help bring down your site load times. You can reduce the size of your images without losing much of the perceived image quality.

With lossless compression provided by EWWW Image Optimizer you can reduce image sizes without much loss of quality. Alternatively, you can use Compress JPEG & PNG Images plugin for the same. They promise a compression in size by about 40% – 60% for JPEG images and 50% – 80% for PNG images, without a visible and obvious loss in quality.

7. Diagnose Your Plugins

All plugins at the end of the day are pieces of code that help perform functions. Sometimes they become cumbersome and counterproductive.

How will you identify the anchors of your site ? Stop them from loading ?

P3- Plugin Performance Profiler

This plugin will detect which of your plugins are heavily impacting your site load times. And with the report that the plugin generates, you shall be able to identify which plugins are dragging your site’s speed down. If any plugin affects site performance far too much, then find alternate plugins.

Get P3 Profiler here!

Plugin Organizer

Now that you know which plugins affect your site performance, you can choose to disable them on all site pages/posts where their use is optional. You can do this on a post by post basis. So if there is plugin slowing your site that you can not do without, then use it only on the pages/posts on your site where it is absolutely necessary.

Get Plugin Organizer here!

8. Disable Hotlinking

Hotlinking is a means by which people use the content that is host on your site’s servers for their own websites. So basically they use your servers with your content on their site. And as a result your server gets loaded with no benefit to you whatsoever.

How do you stop someone from stealing your server resources ?

To prevent people from hotlinking stuff from your site’s content. Some tinkering with your site’s code is required. You can use this tool from htaccesstools.com to generate the necessary code which you can add to your server. Normally, your host will also be willing to help you with this.

And once you prevent hotlinking, you can be certain that your server resources are not spent hosting content for a website other than your own. Hotlinking tactics generally target images and other multimedia which are data heavy, so if you run a site with minimal imagery, disabling hotlinking will not have any effect on your site’s performance.

9. Use A Featherweight minimal social sharing plugin!

Social Media Sharing is important for any website and it forms a significant part of any site’s marketing strategy. However sometimes people get ahead of themselves and put one to many sharing options that not only annoys visitors but slows down the website.

My personal policy with sharing plugins for social media is keep it simple and minimal. Two plugins you out to check out Floating Social Bar and Social Sharing by Danny.

Floating Social Bar for instance, does not load the plugin till the user actually moves the cursor over the social share button which is a replica to begin with.

Social Sharing by Danny has a file size of 50Kb which is incredibly low and it also makes it fast. Enabling sharing buttons popup will require a script that is 600 bytes in size. I mention size only because such lightweight plugin has no effect on site performance, relatively speaking.

10. Disable Pingbacks and Trackbacks

Trackbacks and pingbacks are used to let you know that someone else has put a link of your post on another blog or site. Trackbacks are manual and pingbacks are automatic, they both end up in your comment moderation. 99% of all trackbacks and pingbacks are spam. And if you start getting too much of it, your site speed can potentially be affected.

Go to Settings > Discussions, under Default Article settings disable the pingbacks and trackbacks.

Or we can use a plugin that can deal with spam, like WP SpamShield Anti-Spam. And that’ll be the end of spam in any form.

11. Put The CSS On Top & Javascript At The Bottom

CSS references should go right to the top. Browsers do not load content prior to loading CSS otherwise, you’ll end up with unstylized content. So first the CSS, to avoid this little problem. If you fail to do so, then your site will fail to load progressively. That means a part of your site will show up without any styling. And if your CSS is towards the end, then the browser has to redraw all your site elements which will end up taking longer than if you had put CSS as part of the header.

JS is relegated to the last because it prevents parallel loading in a browser which means it is the only thing that loads. And to add to that, progressive loading is blocked if there is a script file above the content. To ensure all content can progressively load we need to put the scripts at the end.

Free caching plugins do not really accomplish this. Or you could use Autoptimize in tandem with a free caching plugin. But sometimes things tend to break down and I wouldn’t advise this route for someone who isn’t capable of fixing a potential mess. And if you feel you wouldn’t be able to handle it, use WPRocket.

12. Combine Your Images Into One – CSS Sprites

A browser has to make multiple trips back and forth to your server to fetch multiple images. We can combine these images into one big file which contains all images which will effectively reduce the number of HTTP requests and create a far more efficient process. If you aren’t familiar with CSS, you can use a drag and drop method available online to help accomplish the same.  Use either Sprite Pad or Sprite Me, both are will prove to be useful tools to help create CSS Sprites.

Whilst CSS Sprites are helpful, they are not essential but if you’d like to read more about them head over to CSS Tricks.

 

Final Thoughts

Nothing beats an awesome managed WP host with an in-house caching solution and a good theme from a reputed themehouse.

But for those on a budget, I’d recommend –

This combination of tools and software should help create a fast site without spending a penny! But I’d still recommend you at least try a premium caching plugin, it’ll save you all the effort of having to use so many plugins for one purpose. And making all these plugins function effectively for your site is another thing altogether.

Another thing you need to know, too many plugins do not necessarily slow down your site provided they are quality plugins.

Test your site again,

While testing, use one new plugin at a time to check the results. If they are not successively better, then perhaps you should stick to the previous plugin/plugins alone.  For example, use a free caching plugin like Fastest Cache see how much faster your site gets. Now replace your current social media plugin with Social Sharing by Danny, see if it gets any faster.

Basically look for increments in performance, before you stick to a newly activated plugin.

How were the results, did your site get faster ?

I hope it did.

And I hope this post was helpful

Please do share the results of your tests with us in the comments below, perhaps we could help you out!

Subscribe Now

10,000 successful online businessmen like to have our content directly delivered to their inbox. Subscribe to our newsletter!

Archive Calendar

SatSunMonTueWedThuFri
 1
2345678
9101112131415
16171819202122
23242526272829
3031 

Born in 2004 ... Trusted By Clients n' Experts

SEO Stars

They never made me feel silly for asking questions. Help me understand how to attract more people and improve my search engine ranking.

Read More

Emily Schneller Manager at Sabre Inc
SEO Stars

Took advantage of Hostseo's superb tech support and I must say, it is a very perfect one. It is very fast, servers reliability is incredible.

Read More

Leena Mäkinen Creative producer
SEO Stars

We're operating a worldwide network of servers with high quality standards requirements, we’ve choose hostseo to be our perfect partner.

Read More

Ziff Davis CEO at Mashable
SEO Stars

It’s very comfortable to know I can rely about all technical issues on Hostseo and mostly that my website and emails are safe and secured here.

Read More

Isaac H. Entrepreneur
SEO Stars

With hostseo as a hosting partner we are more flexible and save money due to the better packages with great pricing, free SEO n' free SSL too!

Read More

Madeline E. Internet Professional