最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

performance - How to resolve google page speed issues for wordpress website

matteradmin7PV0评论

My current WordPress website has several issues in Google Page speed test

  1. Defer unused CSS

    • I have already implemented CDN and used plugins like WP Rocket(One of the top plugin for WP website optimization)
  2. Reduce server response times (TTFB)

    • I don't know if this is something related to WordPress, but is there anything which can be fixed for this one?
  3. Eliminate render-blocking resources

    • This issues was caused by this only, in my Google page speed test. /recaptcha/api.js(www.google) What will be the possible solution for this?

Also, i would like to know the top list of things to be done for optimizing WordPress websites.

Thanks in advance

My current WordPress website has several issues in Google Page speed test

  1. Defer unused CSS

    • I have already implemented CDN and used plugins like WP Rocket(One of the top plugin for WP website optimization)
  2. Reduce server response times (TTFB)

    • I don't know if this is something related to WordPress, but is there anything which can be fixed for this one?
  3. Eliminate render-blocking resources

    • This issues was caused by this only, in my Google page speed test. /recaptcha/api.js(www.google) What will be the possible solution for this?

Also, i would like to know the top list of things to be done for optimizing WordPress websites.

Thanks in advance

Share Improve this question edited Mar 29, 2019 at 16:13 fuxia 107k39 gold badges255 silver badges459 bronze badges asked Mar 28, 2019 at 8:34 AkashAkash 1321 silver badge7 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0
  1. This is something that you probably can't change if you didn't create the theme yourself. It means that CSS that you don't need on page load is loaded later.

  2. This is determined by the speed of your server (the server itself and its internet connection). If you use a caching plugin (I don't know if WP Rocket does cache, otherwise I'd suggest W3 Total Cache or WP SuperCache), that will speed up your TTFB.

  3. You can add the defer attribute to your script tag. If you can't, W3 Total Cache might do that for you - here's how:
    https://www.hostinger/tutorials/how-to-fix-eliminate-render-blocking-javascript-and-css-in-above-the-fold-content-on-wordpress.

Post a comment

comment list (0)

  1. No comments so far