Skip to content

Instantly share code, notes, and snippets.

@bryanrsebastian
Created May 6, 2020 23:26
Show Gist options
  • Save bryanrsebastian/cdde33822dfefb25545b1d8d70dabb9b to your computer and use it in GitHub Desktop.
Save bryanrsebastian/cdde33822dfefb25545b1d8d70dabb9b to your computer and use it in GitHub Desktop.
if (!is_admin()) {
function defer_parsing_of_js($url) {
if (FALSE === strpos($url, '.js')) return $url;
if (strpos($url, 'jquery.js')) return $url;
return "$url' defer='defer";
}
add_filter('clean_url', 'defer_parsing_of_js', 11, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment