Speed Up – Optimize CSS Delivery

Plugin Banner

Speed Up – Optimize CSS Delivery

by nigro.simone

Download
Description

This plugin is no longer recommended. Deferring every stylesheet makes the page paint before its own layout arrives. That flash of unstyled content is measured as Cumulative Layout Shift — one of the Core Web Vitals this plugin is meant to improve.

The current advice is to inline the CSS needed for the top of the page and defer only the rest, which is more than rewriting a link tag can do.

If you have not configured the exclusion filter for your main stylesheets, deactivating this plugin will most likely improve your scores rather than worsen them.

This small plugin (5 Kb) loads the stylesheets asynchronously and improve page load times.

The recommended use of this plugin is to load your vital stylesheets synchronously and non-vital CSS files asynchronously.
Non-vital CSS-files can be for example: fonts, icons, before the fold template-specific CSS, etc.

You can choose which files to load synchronously with a filter in your function.php, eg.:

// exclude main and child stylesheets from delivery optimization
function exclude_from_delivery_optimization($handle){
    return in_array($handle, array('main-stylesheet', 'child-stylesheet'));
}
add_filter('speed-up-optimize-css-delivery', 'exclude_from_delivery_optimization');

Note: this only works if your other plugins and theme add the CSS correctly.

  1. Upload the complete speed-up-optimize-css-delivery folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

5 estrelas. Funciona muito bem.

By Wilson Santana (oliveira7) on March 18, 2024

Muito bom.

This plug-in is a blessing

By mamadesign on July 15, 2022

This plug-in is a blessing This plug-in is the best! We have to give a big prize to the person who created this plug-in. Thank you very much.

Works great!

By castria on March 25, 2022

Does what it says on the tin, which Google pagespeed likes a lot.

Beyond amazing.

By erenmenges on June 24, 2020

THIS PLUGIN IS THE BEST PLUGIN I'VE EVER SEEN IN WORDPRESS. I had page load speeds around 3 to 5 seconds, but after I installed and activated this plugin, it dropped to 1.5 seconds. I was like "Bruh, is this for real? I have been trying to speed up my page for days, and it took only 1 plugin? Woah." I appreciate the work.

It Works

By amreshkramar on December 30, 2018

Works as expected...........

Great plugin

By betagoo on February 1, 2018

This is great plugin! By use this plugin is possible to get green level into Google Page Speed Insight without using any cache plugin. Off course javascripts have to be loaded asynchronously and (or) defer.

It works!

By rinella on December 14, 2017

It boosted my PageSpeed Insights due to the fact I was having CSS delivery issues. Thanks for the plugin!

Great Plugin

By tigershroof on August 1, 2017

I recommend everyone to check out authors other plugins. I do hope that Simone makes one plugin which combines many functions. These are really nice plugins. Thanks Simone. * I also hope that you upgrade the versions for WordPress.

1.0.14

  • Deprecated: deferring every stylesheet causes a flash of unstyled content, measured as Cumulative Layout Shift. A dashboard notice explains the trade-off and when deactivating will improve your scores

1.0.13

  • Fix the media attribute being captured too greedily: an attribute added after it by another filter ended up inside the generated tag
  • Escape the stylesheet handle and URL before writing them into the tag
  • Declare minimum requirements: WordPress 6.0 and PHP 7.0

1.0.12

  • Tested up to WordPress 7.0

1.0.11

  • Tested up to WordPress 6.0

1.0.10

  • Tested up to WordPress 5.9

1.0.9

  • Tested up to WordPress 5.7

1.0.8

  • Tested up to WordPress 5.5

1.0.7

  • Tested up to WordPress 5.5

1.0.6

  • Tested up to WordPress 5.3

1.0.5

  • Tested up to WordPress 5.2

1.0.4

  • Fix some css are loaded two time

1.0.3

  • Update loadCSS

1.0.2

  • Tested up to WordPress 4.9
  • Update loadCSS

1.0.1

  • Fix bug css not loaded if cached.

1.0.0

  • Initial release.
Back to top