Skip to content

Instantly share code, notes, and snippets.

@Tabrisrp
Last active February 20, 2018 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tabrisrp/b5ef03e8d4bcfcd11adc32b8907ef66d to your computer and use it in GitHub Desktop.
Save Tabrisrp/b5ef03e8d4bcfcd11adc32b8907ef66d to your computer and use it in GitHub Desktop.
Minify inline JS
<?php
add_filter( 'rocket_minify_html_options', 'wp_rocket_minify_inline_js' );
function wp_rocket_minify_inline_js( $options ) {
$options['jsMinifier'] = 'rocket_minify_inline_js';
return $options;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment