Created
November 29, 2015 11:22
-
-
Save jbma/08953a40b2038dd29243 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[] = 'ir-de.amazon-adsystem.com'; | |
return $external_js; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment