Skip to content

Instantly share code, notes, and snippets.

@joviczarko
Created January 22, 2017 13:57
Show Gist options
  • Save joviczarko/db53595301f4a748b83139e7456663b6 to your computer and use it in GitHub Desktop.
Save joviczarko/db53595301f4a748b83139e7456663b6 to your computer and use it in GitHub Desktop.
Remove Query String from Static Resources .js/?ver=1.2
/* Remove Query String from Static Resources */
/* Resources with a "?" in the URL are not cached by some proxy caching servers. Remove the query string and encode the parameters into the URL for the following resources: */
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 );
add_filter( 'script_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