Skip to content

Instantly share code, notes, and snippets.

@Cathrin-Demyokhina
Created October 13, 2017 07:54
Show Gist options
  • Save Cathrin-Demyokhina/6ccb9e6b3017d2ce6225bbfff32de552 to your computer and use it in GitHub Desktop.
Save Cathrin-Demyokhina/6ccb9e6b3017d2ce6225bbfff32de552 to your computer and use it in GitHub Desktop.
Remove query strings from static resources
//Paste into functions.php and do not forget to clear cache
function _remove_script_version( $src ){
$parts = explode( '?ver', $src );
return $parts[0];
}
add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment