Skip to content

Instantly share code, notes, and snippets.

@mrtechnique
Created November 15, 2017 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrtechnique/3a5284330720ae1ee475c9c712bde7fe to your computer and use it in GitHub Desktop.
Save mrtechnique/3a5284330720ae1ee475c9c712bde7fe to your computer and use it in GitHub Desktop.
Remove CSS and JS Versioning in WordPress
function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment