Last active
June 15, 2016 20:13
-
-
Save moxdev/1ef8d3650cbccb3b738460bc2aa7f4cb to your computer and use it in GitHub Desktop.
If you need to load an enqueued script asynchronously in WordPress, or modify the <script> element in any other way, you can use code like the following:
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
/** | |
* Add async attributes to enqueued scripts where needed. | |
* The ability to filter script tags was added in WordPress 4.1 for this purpose. | |
* http://scottnelle.com/756/async-defer-enqueued-wordpress-scripts/ | |
*/ | |
function my_async_scripts( $tag, $handle, $src ) { | |
// the handles of the enqueued scripts we want to async | |
$async_scripts = array( 'some-script', 'another-script' ); | |
if ( in_array( $handle, $async_scripts ) ) { | |
return '<script type="text/javascript" src="' . $src . '" async="async"></script>' . "\n"; | |
} | |
return $tag; | |
} | |
add_filter( 'script_loader_tag', 'my_async_scripts', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment