Remove query strings from static resources without wordpress plugin
Way toRemove query strings from static resources without wordpress plugin
After logging into WordPress dashboard go to Appearance > Editor from the menu at the left hand side.
Now locate the functions.php file
The location to the file may look like : /home/username/public_html/wp-content/themes/currently_active_theme/functions.php
Make a local backup of this file in case anything goes wrong and you may need to revert to previous stable code.
click on it to begin editing it.
Put this below code in your functions.php to to Remove query strings from static resources without wordpress plugin
function _remove_script_version( $src ){
$parts = explode( ‘?ver’, $src );
return $parts[0];
}
add_filter( ‘script_loader_src’, ‘_remove_script_version’, 15, 1 );
add_filter( ‘style_loader_src’, ‘_remove_script_version’, 15, 1 );
This will Remove query strings from static resources without wordpress plugin
Let me know [email protected]/skype-bpshbp if you have any Query