How to Remove Query Strings from Static Resources [WordPress]

You Are Here

This tutorial will help you to Remove Query Strings from Static Resources like from JavaScript JS and CSS Style-sheet files. If you want to increase the performance of  your WordPress website, then tools like Google Page Speed and Yahoo YSlow may suggest you to remove the query string from JavaScript and CSS files.

For Example : I have checked my site speed with GtMetrix website tool, where GTmetrix can help you develop a faster, more efficient, and all-around improved website experience for your users.

You have to just put the URL of your website in the Text box and they will give you best suggestion to improve you WordPress site speed by doing some tweaks. One of this suggestion I got for my website is to Remove Query Strings from Static Resources, which means that most scripts and style sheets called by WordPress include a query string identifying the version. This can cause issues with caching and such, which will result in less than optimal load times.

For now, you can see your JS and CSS files is looking like this :

/wp-includes/js/jquery/jquery.js?ver=1.4.2

Here is the simple solution to Remove query strings from static resources :

In your theme’s function file (Appearance > Editor > Functions.php), add the following code before the closing PHP tag (%>) at the bottom of the file:

function _remove_script_version( $src ){
	$parts = explode( '?', $src );
	return $parts[0];
}
add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );

That’s it, after doing this, just check your WordPress websites performance with the GtMetrix and I hope this will really help to Remove Query Strings from Static Resources and Increase you site speed.

Previous:
Next:

Vishal Gaikar

Article by Vishal

Meet Vishal Gaikar, the tech wizard hailing from Pune, India, who's on a mission to decode the digital universe one blog post at a time. When he's not tinkering with gadgets or diving deep into the digital realm, you can find him concocting the perfect cup of chai or plotting his next adventure. Follow his tech escapades on Twitter and buckle up for a wild ride through the world of innovation and geekery!

Get Free Updates in Your Inbox!


Share This Post On Social Network

13 Responses to “How to Remove Query Strings from Static Resources [WordPress]”

  1. vipin says:

    thanks for this…my site’s score is still low…anyway i guess something is still left..

  2. Arturo says:

    HI!
    How can I fix this issue?
    Defer parsing of JavaScript

    Thanks;

  3. Barry says:

    Worked for me! Thanks a ton!

  4. tyler says:

    how do I exclude a particular script?

    like: http://maps.googleapis.com/maps/api/js

    Tyler

  5. Dan says:

    Thanks for this, tried it, but the site went blank after installing the script right before the )); tag.

    Have WP Super Cache installed.

    Any clue?

  6. Bilgedede says:

    Special Thanks for this article. this is working code on my site.

  7. lite3 says:

    Hi. Now the plugin ‘WP Resources URL Optimization’ can do this.
    http://www.litefeel.com/wp-resources-url-optimization/
    it remove query strings and change to dir.

  8. this method works for me, But the plugin css still using query string in there..
    so how to remove that dude.??

  9. kenyafever says:

    My functions.php doesn’t have a closing php tag! Is that possible?

Leave a Reply

© 2008-2020 - The content is copyrighted to and may not be reproduced on other websites. Designed by Vishal