Problem:
How to Remove version number / querystring from JS and CSS in WordPress.
Solution:
goto your active theme folder and open functions.php file
and add below lines at the bottom.
function del_queryandversion_from_css_js( $style_or_js_url ) {
if ( strpos( $style_or_js_url, 'ver=' ) )
$css_js = remove_query_arg( 'ver', $style_or_js_url...