Skip to content

Instantly share code, notes, and snippets.

@sky4git
Last active August 29, 2015 14:21
Show Gist options
  • Save sky4git/c27f141fe5095427a0c0 to your computer and use it in GitHub Desktop.
Save sky4git/c27f141fe5095427a0c0 to your computer and use it in GitHub Desktop.
Async Wordpress Scripts
// Note: This filter can go into functions.php
function add_defer_to_wp( $url )
{
if ( FALSE === strpos( $url, '.js' ) )
{ // not our file
return $url;
}
// Must be a ', not "!
return "$url' async";
}
add_filter( 'clean_url', 'add_defer_to_wp', 11, 1 );
//if you want it to defer Please visit: https://gist.github.com/toscho/1584783
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment