Speed Up WordPress Website In 2020

How to speed up WordPress surely is a major concern these days. There are several articles available on the web for doing that. But in this article, I’ll show you some of the easiest ways to increase the performance of WordPress site.

There are many reasons that directly affect our site visibility as well as performance on the Google search engine. Many of the visitors leave the website that loads slowly.

Speed Up WordPress Website In 2020
Image Source: https://oceanwp.org/blog/wordpress-performance-tips-everyday-user/

Here are the 11 ways too speed up WordPress:

  • Keep Your WordPress Site Updated
  • Use lightweight WordPress Theme
  • Reduce Image sizes
  • Enable GZIP Compression
  • Use a Content Delivery Network(CDN)
  • Fix HTTPS/SSL Errors without Plugin
  • Remove the Plugins You Don’t Need Anymore
  • Minify HTML, CSS, JS
  • Optimize WordPress Database

Keep Your WordPress Site Updated

It’s good practice to update themes, plugins, WordPress to the latest version. These are the main reason for sites being hacked and the other one is insecure password. These will also increase the site security as well performance.

So how you can update all the themes plugins and WordPress. Don’t worry WordPress gives us an option in backend where we can get all the things that are pending for update.

Go to the admin backend and navigate to Dashboard > Updates. Here you can see the pending updates that needs to be updated.

Keep Your WordPress Site Updated

Use lightweight WordPress Theme

Your WordPress theme is your site’s framework, which means it performs an important role in how instantly your site loads. Sure, there are a ton of practices that you can use to speed up your WordPress site.

Here are some of the light weight themes that perform very well.

Other than that, all of these themes should set you up with a great lightweight foundation to build your site on!

Reduce Image sizes

Comparatively, images having larger size as the plain text Which means they take longer time to load the page and that can slow your site.

To increase your site speed, you need to optimize images first. The best way to do this by using photo editing software, or online images compressor tools. And also with the help of the plugin, we can achieve that.

Here are the 5 plugins that compress images and optimize the performance.

Enable GZIP Compression

WordPress GZIP compression is actually something that you need to enable on the server-side, not client side. But by using some plugins you can do it from client side.

Use a Content Delivery Network(CDN)

A CDN is a way to deliver content from your website or mobile application to people more quickly and efficiently, based on their geographic location.

Some of the benefits of using a CDN for your website include:

  • Faster load times for web and mobile users
  • Quickly scalable during times of heavy traffic
  • Minimizes risk of traffic spikes at point of origin, ensuring site stability
  • Decreases infrastructure costs due to traffic offloading (less load on origin)
  • Better site performance

Fix HTTPS/SSL Errors without Plugin

Each SSL / HTTPS enabled site is issued a unique SSL certificate for identification purposes. If a server is pretending to be on HTTPS, and its certificate doesn’t match, then most modern browsers will warn the user from connecting to the website.

Manualy fix SSL errors: This method requires manual troubleshooting, but it is more effective and better for performance.

First, Go to Settings » General page and make sure that WordPress Address and Site Address both options have HTTPS URLs. If not please change that to HTTPS.

By using wp-config.php file: solve Too many redirects error you need to copy the below code and paste it to wp-config.php file.

define('FORCE_SSL_ADMIN', true);
// in some setups HTTP_X_FORWARDED_PROTO might contain 
// a comma-separated list e.g. http,https
// so check for https existence
if (strpos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false)
       $_SERVER['HTTPS']='on';

Remove the Plugins You Don’t Need Anymore

Unused plugins can make your job more difficult and complicated than it needs to be cleaned. This can slow down your website’s and also hackers take advantage of outdated plugins to attack WordPress websites.

As briefly mentioned above, plugins can also accidentally (or even not so accidentally in very, very rare cases) provide security holes people can abuse to get access to the backend of your site.

Understand how important it is to uninstall the tools you’re not using anymore.

Minify HTML, CSS, JS

Every WordPress Site have several files folders and they can slow down the site because the every time when the page loads every resource can take too much time.

Minification of that files can reduce the file size and this will increase the page performance.

Optimize WordPress Database

As you keep creating new posts and adding fresh content to the website, you can expect WordPress to get slower gradually. In such circumstances, you should not hesitate to optimize a WordPress database because that’s where all the information is stored.

You can do it manually through settings, but a much simpler solution is to install a WP Sweep plugin. This tool will help you to get rid of many redundant features in these (and many other) segments of the site:

  • Auto drafts
  • Revisions
  • Deleted comments
  • Orphaned user meta
  • Unapproved comments
  • Transient options
  • Unused terms

Conclusion

In this article, we analyzed 9 Tips to speed up WordPress & performance. Relive our tips and make sure to leave a comment if you need additional explanations – we would be glad to help you out!

Leave a Reply