Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from mattradford/remove_query_string.php
Created March 27, 2025 18:19
Show Gist options
  • Save dgoze/c7be491fd0186e4d761eb92eafcc038d to your computer and use it in GitHub Desktop.
Save dgoze/c7be491fd0186e4d761eb92eafcc038d to your computer and use it in GitHub Desktop.
function mattrad_remove_script_version( $src ){
return remove_query_arg( 'ver', $src );
}
add_filter( 'script_loader_src', 'mattrad_remove_script_version' );
add_filter( 'style_loader_src', 'mattrad_remove_script_version' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment