Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active February 18, 2017 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nielslange/70c46ba7ffc959921753a31232e6da42 to your computer and use it in GitHub Desktop.
Save nielslange/70c46ba7ffc959921753a31232e6da42 to your computer and use it in GitHub Desktop.
WordPress: Remove query strings
<?php
//* Remove query strings
add_filter( 'script_loader_src', 'nl_remove_query_strings', 15, 1 );
add_filter( 'style_loader_src', 'nl_remove_query_strings', 15, 1 );
function nl_remove_query_strings( $src ){
$parts = explode( '?ver', $src );
return $parts[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment