Pages

Saturday, January 18, 2014

How to Speed Up Your WordPress Sites

WordPress has become one of, if not THE, most popular open source blogging and content management systems around. With over 25 million websites and blogs powered by this award-winning web software and a continuously expanding community of developers, designers and contributors, freelancers who have the skills and knowledge to create WordPress websites are in high demand. Over 90% of my own freelance business involves the use of WordPress somehow, and I have found a niche for providing clients with quality, affordable, custom WordPress websites that has grown my business at a rapid pace.

How to Speed Up Your WordPress Sites

When you're not prepared for lots of traffic, it's common for a web host to suspend your account temporarily, and that's something you don't want. If your writing is decent and you've been doing some minimal promotion, then it could happen to you. Think positively and prepare your blog as though it's going to be a huge success. To do that, here is a tutorial on how to speed up your WordPress site.



Utilize WordPress Object Cache

By inserting this simple code into your wp-config.php file, you can set WordPress to begin caching database queries rather than initiating new server requests on each load. You don't have to understand why this works, it just will.

1. // Enable the WordPress Object Cache:
2. define(ENABLE_CACHE, true);
Read more on this topic:

By reducing the number of queries, you'll both increase the speed of your site, and reduce the server resources that are consumed each time you receive a visitor. As a result, you'll find that it will make your web host much happier in the event of a huge traffic spike.

Utilize a caching plugin

The main plugin that meets this need is the WP Super Cache, which does exactly what it says. It caches posts and stores them as files on the server so that repeated requests are dealt with faster and with fewer resources. The plugin will automatically update as comments are added so the dynamic nature of the blog isn't lost.

Another option, which is used right here on Mashable, is W3 Total Cache. It's a plugin that promises 10 times the speed of your site without it.

More 10 ways here

No comments:

Post a Comment