Skip to content

Instantly share code, notes, and snippets.

@jcanfield
Created August 6, 2012 19:15
Show Gist options
  • Save jcanfield/3277686 to your computer and use it in GitHub Desktop.
Save jcanfield/3277686 to your computer and use it in GitHub Desktop.
Remove Query Strings from Wordpress Scripts
// Add to functions.php
<?php
function _remove_script_version( $src ){
$parts = explode( '?', $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