I recently found this type of need & I got Best Solutions as below for ?ver="1.0.0" etc which will remove version from every css & script.
This may be helpfull in your coding journey.
function theme_remove_script_version( $src ) {
if ( strpos( $src, 'ver=' ) ) {
$src = remove_query_arg( 'ver', $src );
}
return $src;
}
add_filter( 'script_loader_src', 'theme_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', 'theme_remove_script_version', 15, 1 );