Problem:
How to Remove version number / querystring from JS and CSS in WordPress.
Solution:
goto your active theme folder and open functions.php fileand 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 );
return $css_js;
}
add_filter( 'style_loader_src', 'del_queryandversion_from_css_js', 10 );
add_filter( 'script_loader_src', 'del_queryandversion_from_css_js', 10 );
0 comments:
Post a Comment