Speeding Up WordPress
Whether you’re using WordPress as a CMS, a blog or somewhere between the two, as a portfolio site, making sure your site runs quickly is absolutely paramount in this day and age. This article and screencast combo takes you through how to use a variety of tips, tricks and techniques in order to make your WordPress powered site load faster.
Contents
- Introduction
- Premium Themes Vs Custom Themes
- Optimising Images
- The 30%, 30kb Rule
- Using CSS Sprites
- Removing Database Heavy Plugins
- Caching Plugins Compared
- Setting Up W3 Total Cache
- Using a CDN
- Setting Up WordPress To Utilise A CDN
- Wrapping Up
Introduction
Since last year, page load speed has been included in Google’s ranking algorithm. Thus, it’s become absolutely vital that your site, regardless of its usage, loads as fast as possible. The first thing we’re going to do is test load speeds to see what point we’re starting from. I’ve taken two sites -- my fairly heavily optimised WPShout and my friend Marco’s blog, which runs a normal premium theme from ThemeForest. We’ll be using a tool called Pingdom throughout this article in order to test the speed of our site. To start with, we’ll compare the two sites -- the fairly heavily optimised WPShout and Marco’s blog, a normal WordPress blog running a premium theme.- Clearly, WPShout loads far faster than Marco’s blog and there are a number of reasons for this:
- Fewer files: WPShout loads with only a handful of CSS, Javascript and image files whereas Marco’s blog has a lot of CSS, Javascript and then a load more images added on top. We’ll cover optimising images later
- Faster files: WPShout is using a Content Delivery Network, or CDN in order to deliver the files faster. More on this, later.
- Cached files: you’ll note that images don’t show up as being downloaded again. This is because files which aren’t changed regularly are stored locally and so don’t need to be downloaded again. We get to caching later.
- Custom theme: WPShout runs a custom theme, whereas Marco’s blog runs an out-the-box premium theme. The pros and cons of each method are weighed up in the next section.
Premium Themes vs. Custom Themes
It’s obvious, but I’ll say it regardless: an out-the-box theme, free or paid, won’t get anywhere near the performance of a well made custom theme. Even premium themes from some of the largest marketplaces have horrendous performance. However, help is at hand! We can using something called a caching plugin in order to save a copy of your site and then show that when people visit, thus circumnavigating the problem of out-the-box themes using up a lot of resources. Imagine you had a written document and wanted to give copies to everyone who visited. At the moment, you have to write it all out by hand, but if you use a photocopier, you just need to do the work once and give out copies! A caching plugin is like the photocopier -- it loads the page once and then distributes copies of the page to visitors, meaning the page loads faster as visitors don’t have to wait for the server to load the page -- or for you to write out the document. There are a number of caching plugins available and we’ll visit them later.Optimising Images
- Images are likely to be the single biggest factor that slow down your site so are well worth taking the time to optimise!
The 30%, 30kb Rule
I use something we’ll call the 30%, 30kb rule. Images should be at 30% quality and/or no more than 30kb large. Whilst images containing text might need to be larger, as a general rule it works well in keeping file sizes down. Of course, you also need to make sure images are no wider than your post’s content area.Using CSS Sprites
- CSS Sprites let you combine what would have otherwise been multiple images -- and multiple downloads -- into a single file.
Further Image Optimisation
You can go further with your image optimisation, though. Yahoo has a service called “Smush.it” which takes your images and optimises them, keeping the same quality but lowering the filesize. It would be a pain to individually optimise each image so thankfully there’s an excellent free plugin called “WP Smush.it” which automatically runs all your images through Smush.it when you add them to a post or page.Remove Database Heavy Plugins
- Lots of plugins dosn't necessarily mean your blog will load slowly, but one may lead to the other.
- Plugins which make lots of database queries aren't a problem if you use a caching plugin.
Caching Plugins Compared
And now for the big one: caching plugins! These will give you by far the biggest performance boost but there are lots of plugins to choose from so it’s vital some time is spent comparing the performance of each on your site. Whilst there are a good number of plugins available, there are a couple of main ones: I switched to W3 Total Cache from WP Super Cache about a year ago after testing out various options and it’s been absolutely fantastic. That said, it’s not necessarily fastest on your site so it’s important you try out a couple and compare the results. Tutorial9 has a really good post comparing the different plugins available, but I must stress it varies from site to site which ones work best. However, I’ve found W3 Total Cache to be consistently fast on various set-ups so we’ll explore how to use it here.Setting Up W3 Total Cache
Installing such a complicated plugin is surprisingly easy. Total Cache installs like most other plugins -- under the plugins tab, do a search for W3 Total Cache and it’ll show up as the first result. Click “install now” and then activate the plugin. However, the plugin isn’t set up yet! You’ll see a new tab on your admin bar “Performance”. Open this up. Total Cache does some impressive detective work and gives you some recommend settings. It’s now just a case of going through all the settings, activating each one and seeing what performance boost each option gives you. Some may decrease performance so it’s vital you test. Total Cache has some excellent documentation built in -- select the various options under the Help tab. The FAQ is brilliant at going through more or less every single question you could possible have and answering it clearly. However, there may be some extra set up required. You might get some messages popping up at the top of the page telling you you need to add some code to a file called .htaccess. .htaccess is a file which allows you to locally configure your Apache settings, and thus is impressively powerful. To access it you’ll need to log into your site’s FTP and then navigate to the root. If you then can’t see it, show hidden files. Download it (again, show hidden files), make a copy as a backup and then load it in your text editor. Add the lines of code to the bottom of the file, upload again and you’re done! Make sure you try loading your site immediately to check it still works. If it doesn’t, check you’ve copied all the code exactly and you haven’t deleted any other code in the file. And you’re done! Total Cache is set up!Using a CDN
“A CDN can increase a website's performance by serving items from the closest possible location to the visitor. For example, let's say that you have a web server in Los Angeles. A visitor from the United Kingdom wouldn't get the best possible performance, because images and other content would go through many "hops" and a lot of distance to get across the USA and the Atlantic Ocean. With CDN, those items would be served from a location much closer to the visitor, e.g., Amsterdam. The web server would still provide the pages, but images and other larger items would be served from the CDN.” Mark Bailey, WPCDNEssentially, a CDN, or content delivery network, takes all your static files you’ve got on your site (CSS, Javascript and images etc) and lets visitors download them as fast as possible by serving the files on servers as close to them as possible. CDNs used to be for the elite, but in the last 18 months have become available to the masses and are now something I thoroughly recommend to anyone and everyone. The first thing you need to do is to find a CDN provider! CDNs to consider I use WPCDN on my sites and I’ve been very pleased with it, but by no means are they the only CDN providers! There are a fair few, but these are ones I’ve been personally recommended by others or use myself:
- Akamai
- Free CDN (this is, obviously, free, but I’ve had no experience with it; you may very well get what you pay for)
- Google! You can let Google host your jQuery/Javascript libraries for you on their CDN
- MaxCDN
- WPCDN
Good article. There are some other techniques for speeding up WP but are really beyond the scope of this article. For instance, MySQL and Apache configurations could probably be addressed to help improve WP performance.
Whether or not you have multiple sites on an account (e.g shared hosting) versus your own server for a site is a factor, if you’re hosting yourself, the speed you’re paying for and depending on internet traffic is a factor, or if the host gets a lot of pen tests/hack attempts, some hosts, this is again tailored towards wordpress and does its job well (explaning little tweaks) to improve performance, I’m the same way, if a site doesn’t load, or I don’t see something useful, I hit CTRL+W or middle click a tab, go back, move on. Nice piece noupe.com.
So where do WordPress frameworks lie in this equation? The world isn’t made of only fully customized sites and premium out-of-the box themes.
They fit in as a tool that in the end, do not have much of an impact on the load time. Naturally if the framework is not built cleanly, or the user does not fully get how to use it, there could be instances where they would play into the speed. But otherwise, it would depend on how they are used.
Thanks for the follow-up!
Frameworks should, in theory, sit with premium out-of-the-box themes as the customisation that goes into them should be purely graphical and the code used to power the site remains the same, hence the same load times as other premium themes.
Thank you very much for such an informative post. This will definitely be bookmarked as a reference for my next WordPress project.
One thing I’m real curious to try is the 30% optimisation for images. Sounds a little low to me, but I’ve yet to try it at specifically 30%.
On that note, I have found that when saving images for web at such a low quality setting, a nice little trick to help hide some of those artefacts is to apply a VERY minor blur when saving. (Eg 0.1)
Obviously this depends on what your image is, but it can be a useful trick none the less.
I’m using the SWIFT “freemium” theme, and it loads pretty quickly. Also using a couple of caching plugins to help improve my load times.
The 30% / 30 kb images rule seems a bit drastic, though. Our site is a food and recipe blog, so it has lots of images of food on each post. Your 30/30 rule might hurt too much.
I tend to agree with most of the comments that say the 30%, 30kb rule might be a bit drastic, but it is really something that could be considered without much consequence for some sites that are not image intensive or that do not rely much on their images.
But I think it really needs to be evaluated on a case by case basis. Like with Nate saying that they have a food blog, they are going to be heavily relying on high quality images. So that route would not be one they should pursue. But there are plenty of other areas they can still tweak for faster loads.
The 30/30 rule came up when we were reviewing the article, but in the end we kept it. Perhaps I could have worded it better; when images are purely being used for illustration, then by all means apply it. When there’s detail that needs to be seen, then, as Rob says, a case-by-case tweaking may be more appropriate.
Thanks Alex for the follow-up. I think it’s worded fine actually. And for all those thinking that this is too drastic, the first image in this post was optimized to only 30% before the post went up, and that is what is sitting up there still. So I don’t think it is too far out there for most sites to try! ;)
What a great one! I recently noted huge differences concerning the speed of my WordPress installations. Seems some plugins made the difference.
The caching plugins didn’t help at all, i even had the feeling it made the websites load slower.
Thanks for this article, as we will offer soon PSD to WP conversion, it’s always useful to have some new tips about optimizing the best CMS !
I am looking at Mashable source code and I noticed less code. I see they using W3 Total Cache to improve speed but how to make mignify code like them? I don’t find in my W3 Total Cache to do like them.
It’s just one of the options in W3 Total Cache — have a poke around the options page and you’ll see it.
Thanks for the article. I use Swift theme too, and I confirm it is fast. My caching plugins could have been replaced by one, but powerful. ANY suggestions? However, is anyone here familiar with PS plugins for psd conversion? For template publishing to WP.