Speed Up – Optimize CSS Delivery

Speed Up – Optimize CSS Delivery Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 56,723 downloads
Speed Up – Optimize CSS Delivery Icon

Try plugin: Speed Up – Optimize CSS Delivery

We'll create fresh WordPress site with Speed Up – Optimize CSS Delivery installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Speed Up – Optimize CSS Delivery

This plugin load the stylesheets asynchronously and improve page load times.

8


0


0


0


0

updated: 1 year ago
since: 7 years ago
author: Simone Nigro

Description

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.