Skip to content

Instantly share code, notes, and snippets.

@VirtuBox
Created June 14, 2017 00:30
Show Gist options
  • Save VirtuBox/dd66b068db242df19f945fe74752a611 to your computer and use it in GitHub Desktop.
Save VirtuBox/dd66b068db242df19f945fe74752a611 to your computer and use it in GitHub Desktop.
Remove queries from static assets on WordPress
//remove queries from static assets
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