Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mihdan/81a4733c45aa2ec190eb4e1b5f19c07f to your computer and use it in GitHub Desktop.

Select an option

Save mihdan/81a4733c45aa2ec190eb4e1b5f19c07f 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