Created
August 27, 2015 10:47
-
-
Save gnikolopoulos/7b02ad5dd70cc06953ca to your computer and use it in GitHub Desktop.
Add Defer and Async Attributes to Render Blocking Javascript in WordPress
This file contains 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 | |
function defer_js_async($tag){ | |
// scripts to defer. | |
$scripts_to_defer = array('script-name1.js', 'script-name2.js', 'script-name3.js'); | |
// scripts to async. | |
$scripts_to_async = array('script-name1.js', 'script-name2.js', 'script-name3.js'); | |
foreach($scripts_to_defer as $defer_script){ | |
if(true == strpos($tag, $defer_script ) ) | |
return str_replace( ' src', ' defer="defer" src', $tag ); | |
} | |
foreach($scripts_to_async as $async_script){ | |
if(true == strpos($tag, $async_script ) ) | |
return str_replace( ' src', ' async="async" src', $tag ); | |
} | |
return $tag; | |
} | |
add_filter( 'script_loader_tag', 'defer_js_async', 10 ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment