Skip to content

Instantly share code, notes, and snippets.

@jbma
Created December 7, 2015 13:20
Show Gist options
  • Save jbma/52b573d09b5866cc8f13 to your computer and use it in GitHub Desktop.
Save jbma/52b573d09b5866cc8f13 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'rocket_minify_excluded_external_js', '__fix_wprocket_excluded_external_js' );
function __fix_wprocket_excluded_external_js( $external_js ) {
$external_js[] = 'google.com';
return $external_js;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment