filter

jetpack_implode_frontend_css

Allow CSS to be concatenated into a single jetpack.css file.

Parameters

$do_implode
bool

Should CSS be concatenated? Default to true.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

Instead of including a separate CSS file for each Jetpack feature, Jetpack enqueues only one file, built by concatenating all CSS from all Jetpack features. This limit the number of requests made when loading a site. To deactivate this, you can use the following snippet:
add_filter( 'jetpack_implode_frontend_css', '__return_false', 99 );