How to increase site speed

These are the few things you should consider.

  1. Cache (WP Super Cache Plugin or Any best you prefer)
  2. Image Compression (GZip)
  3. JS, CSS etc… Minification
  4. Thumbnail Regeneration Plugin
  5. Lazy Load for Images
  6. Page Speed Ninja Plugin;
These right now;
 
Compress your images, and make sure all the images you are using has the size of less than 100 kb.
 
If you are using a theme, then the code is probably messy and takes a long time to load. Another option I can assume is that you are using heavy content (videos, animations, etc.).
 
You can open the full Lighthouse report to see which website components are causing the most problems. Here --
nhqDZsa
-- are the BHW's results in the "Performance" category.

Generally, I would split site improvements into two categories:
  • DIY improvements, with image size, as other users have already noted, being the worst offender. Minify them via tinyjpg.com, scale them down -- and you'll probably shave 90% of the original size off.
  • Complex improvements, so you'll need web developers' help.
Good luck.
 
I think these help you to improve your website:
  • Choose the best Wordpress hosting
  • Install Premium Theme
  • Compress Image
  • Avoid too much of plugins
  • Limit the external scripts
 
if you have a vps you should check serverside caching
redis for database cache
and nginx for page cache
had great results with it
home page loads on 800ms a very heavy home page
and posts around 400-500ms with ads enabled
choose a low http requests theme
enable static file cache (css,js,png,jpeg,woff,ttf,) and set them to expire after 3 or 4 months
if you have shared hosting theese wont work
 
  1. Enable compression
  2. Minify CSS, JavaScript, and HTML
  3. Reduce redirects
  4. Remove render-blocking JavaScript
  5. Leverage browser caching
  6. Improve server response time
  7. Use a content distribution network
  8. Optimize images
note:if you are not the technical guy then check in fiverr for do it
and dont use amp
 
With WordPress it can be a multitude of things. If you know your hosting is fine then you'll want to go through and check the following:
  • PHP version. Make sure you're running the latest version. If your theme or plugins aren't compatible, ditch those and find alternatives.
  • Plugins. How many plugins are you using? More plugins = worse page speeds (generally speaking).
  • Theme. Is your theme's code base up to date? Is it a pretty lightweight theme or is it "clunky".
  • Image compression. Make sure you're saving your images for the web. A lot of people overlook this and upload 10MB featured images or insert large images into the header, sidebar, and footer.
  • Caching. Enable caching.
If you go the route of trying to use someone on Fiverr be careful who you give access to. Make a backup of your site's files and database before giving access. In the end, it'd probably be best if you spend some time to try to learn some of this.
 
Back
Top