Skip to content

Instantly share code, notes, and snippets.

@netmagik
Created November 22, 2015 20:17
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 netmagik/ac5e143deb0aa64737d4 to your computer and use it in GitHub Desktop.
Save netmagik/ac5e143deb0aa64737d4 to your computer and use it in GitHub Desktop.
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