Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save iliman/9e57cfaa1bd64046e799e45989800abf to your computer and use it in GitHub Desktop.
Save iliman/9e57cfaa1bd64046e799e45989800abf to your computer and use it in GitHub Desktop.
function myprefix_add_async_attr( $tag, $handle ) {
if ( 'my-script' !== $handle ) {
return $tag;
}
return str_replace( ' src', ' async src', $tag );
}
add_filter( 'script_loader_tag', 'myprefix_add_async_attr', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment