Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Created November 20, 2017 15:26
Show Gist options
  • Save anwerashif/fe25a2d0f37b267670afe14e08f91d9a to your computer and use it in GitHub Desktop.
Save anwerashif/fe25a2d0f37b267670afe14e08f91d9a to your computer and use it in GitHub Desktop.
Remove Query Strings WordPress
<?php
// Do NOT include the opening PHP tag
// Remove Query Strings
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