Created
December 7, 2015 13:20
-
-
Save jbma/52b573d09b5866cc8f13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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