Skip to content

Instantly share code, notes, and snippets.

@glueckpress
Created December 21, 2017 08:08
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save glueckpress/5e574ff6b43f61ba7a04de85163eb518 to your computer and use it in GitHub Desktop.
Save glueckpress/5e574ff6b43f61ba7a04de85163eb518 to your computer and use it in GitHub Desktop.
[WordPress][WP Rocket] Disable minification of inline CSS when Minify HTML is enabled.
<?php
/**
* Disables Minify for inline CSS.
* https://github.com/wp-media/wp-rocket/blob/v2.11.3/inc/front/minify.php#L72
*/
add_filter( 'rocket_minify_html_options', function ( $html_options ) {
$html_options = array();
return $html_options;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment