Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bappi-d-great/2a67ff307db672d4566b to your computer and use it in GitHub Desktop.
Save bappi-d-great/2a67ff307db672d4566b to your computer and use it in GitHub Desktop.
Defer parsing of javascript to improve performance in wordpress
<?php
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, '.js' ) ) return $url;
if ( strpos( $url, 'jquery.js' ) ) return $url;
return "$url' 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