Skip to content

Instantly share code, notes, and snippets.

@cameronscott137
Last active August 29, 2015 14:10
Show Gist options
  • Save cameronscott137/b04a7c66f3b57097c68d to your computer and use it in GitHub Desktop.
Save cameronscott137/b04a7c66f3b57097c68d to your computer and use it in GitHub Desktop.
Hack filter to add 'async' to WordPress script output
add_filter( 'clean_url', function( $url )
{
if ( FALSE === strpos( $url, '.js' ) )
{ // not our file
return $url;
}
return "$url' async";
}, 11, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment