Skip to content

Instantly share code, notes, and snippets.

@stompweb
Created March 2, 2016 11:47
Show Gist options
  • Save stompweb/7626eaeceb1f09c6c0f6 to your computer and use it in GitHub Desktop.
Save stompweb/7626eaeceb1f09c6c0f6 to your computer and use it in GitHub Desktop.
<?php
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