Home  >  Article  >  Backend Development  >  9 tips to make your WordPress website run faster

9 tips to make your WordPress website run faster

WBOY
WBOYOriginal
2016-07-29 09:11:46791browse

1. Choose a good host

Try not to use free hosting or shared hosting (Godaddy, Bluehost, etc. so-called unlimited bandwidth, unlimited websites, etc.)
First of all, your domain name and your host are best in Where is an IDC? If not, it is recommended that you use a DNS service provider with a good reputation so that the domain name can be resolved to the host as quickly as possible. This is not the point. The point is that your server/host space should be fast enough. How can it be fast? Woolen cloth? CPU configuration, CPU usage, physical memory size, disk type and disk I/O performance (including Mysql databasedisk used by the server), Mysql response speed and Mysql concurrency number, etc., will all affect The website is fast and unpleasant, and it has a physical impact.

2. Choose a faster theme

What kind of theme is faster? Intuitively, themes that contain as few php, js, css, and font (font or icon font) files as possible will perform better. From a code perspective, a theme that is well coded and loads the right files on the right page will be better.

3. Choose a caching plug-in

It is recommended to use W3 Total Cache or WP Super Cache, both are free, but both are easy to use. I personally prefer W3 Total Cache because it supports: page caching, HTML compression, objects Caching, database caching, client browser caching, and CDN.

4. Use a CDN

If you are abroad, CloudFlare is good; if you are domestic, Accelerator is good.
5. Enable Gzip
If the server supports it, enable Gzip. The above-mentioned caching plug-in W3 Total Cache allows you to enable this.
6. Use well-coded plug-ins
WordPress has countless plug-ins, but not all plug-in codes are well-coded, which requires you to determine which plug-ins are suitable for you. The most intuitive way is: when you install a plug-in with less than 3 stars from the WordPress plug-in directory, you should carefully understand its code! How to know?

7. Pay attention to updating your themes and plug-ins in a timely manner

Updating the WordPress themes and plug-ins you use in a timely manner can not only improve the security of your WordPress website, but some updates are targeted at performance, which will improve performance. improved.

8. Optimize the database

You can use WP-Optimize or WP-DBManager and other plug-ins to optimize your database. These plug-ins can delete unmoderated spam comments, articles in the recycle bin, etc. Automatically saved drafts or rolled-back versions of articles, etc. Of course, the best way is to access your database and execute SQL statements to perform these operations yourself, if you feel you are familiar enough with both SQL and WordPress.

9. Optimize uploaded images

For any website, images are an important element on the page, but the size of your image should be consistent with the size of the largest container in which you use this image. Match, instead of uploading the original picture or photo directly. For example: you want to upload a picture. The maximum width of the container where this picture is located is 948px, and the width of the picture itself is 1600px. You should process this picture so that its maximum width is 948px. This can significantly improve the loading speed of the webpage where the image is located, shorten the loading time and save server resources and bandwidth.
Another situation is: the maximum width of the image you upload is the same as the width of the largest container you use to modify the image. In this case, it is recommended that you use Smush.it and the WordPress plug-in based on it to process the uploaded image. Of course, you can also use desktop software like Lossless Image Compression Master (image compression software recommended) or online websites like jpegmini to compress your images.

The above introduces 9 suggestions to make your WordPress website run faster, including Mysql database and sql database. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn