Skip to content

Instantly share code, notes, and snippets.

@eder-dias
Created May 21, 2017 00:15
Show Gist options
  • Save eder-dias/385df9b4a454b05948818c6da8da6875 to your computer and use it in GitHub Desktop.
Save eder-dias/385df9b4a454b05948818c6da8da6875 to your computer and use it in GitHub Desktop.
Remove query strings from static resources.
// Add this code to your theme’s functions.php
function ewp_remove_script_version( $src ) {
return remove_query_arg( 'ver', $src );
}
add_filter( 'script_loader_src', 'ewp_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', 'ewp_remove_script_version', 15, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment