Skip to content

Instantly share code, notes, and snippets.

@Galibri
Last active October 2, 2019 15:41
Show Gist options
  • Save Galibri/f22005439e4eca4a0974a43fd3866681 to your computer and use it in GitHub Desktop.
Save Galibri/f22005439e4eca4a0974a43fd3866681 to your computer and use it in GitHub Desktop.
<?php
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