Skip to content

Instantly share code, notes, and snippets.

@andrezrv
Last active August 29, 2015 14:01
Show Gist options
  • Save andrezrv/7cd4f7bbfc71f80e9f5b to your computer and use it in GitHub Desktop.
Save andrezrv/7cd4f7bbfc71f80e9f5b to your computer and use it in GitHub Desktop.
Remove query arguments from any enqueued scripts.
<?php
/**
* Remove query arguments from any enqueued scripts.
*/
function remove_query_args( $src ) {
if ( strpos( $src, 'ver=' ) ) {
$src = remove_query_arg( 'ver', $src );
}
return $src;
}
add_filter( 'style_loader_src', 'remove_query_args', 9999 );
add_filter( 'script_loader_src', 'remove_query_args', 9999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment