Categories: TipsWeb Stuff

W3TC: Remove query strings from static resources quick tip

Just a quick tip for those who are using the famous W3TC (W3 Total Cache) caching plugin for WordPress. If you’re a Page-Load-Speed freak, and you’re checking how fast your blog loads day after day, then you might have noticed that your average speed grade in GTMetrix went down because of static resources factor. If your disappointed about the results of your speed test because of that one factor, then worry no more! You can remove those query strings easily in just one click.

Just go inside your WP admin, then click Performance > Browser Cache > Prevent caching of objects after settings change, then untick it. Just like the screenshot below:

Below are my GTMetrix results screenshot before removing the query strings. Notice that my grade is F in the query string factor, which is really disappointing and annoying:

My Page Speed grade went up by 3% in just one click. Below is the GTMetrix results screenshot after removing the query strings:

Try it yourself! If you’re not using a W3TC plugin, then adding this to your functions.php file might help:

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 );

jehzlau

I'm a newbie web developer

View Comments

Share
Published by
jehzlau

Recent Posts

Convert your WordPress blog into a mobile app for free

If you're already an expert in "Progressive Web Apps" and you already have a mobile…

April 7, 2018

Philippines ranked 5th in Bitcoin volume by currency

Yep, you read it right. The Philippine currency (PHP / Pesos) ranked 5th in the…

November 3, 2017

Where to withdraw your Bitcoins in PH after the SegWit2x Hard Fork this November?

If you're using Coins.ph to convert your BTC to Philippine Pesos like me, then you…

October 22, 2017

Poloniex 101: Newbie’s Guide to Buying and Selling Cryptos in Poloniex

If you're already trading cryptos, then this post is NOT for you. This is a…

August 30, 2017

Why you should NOT buy Bitcoins from Coins.ph

I love Coins.ph, it's convenient to buy mobile load, pay bills, and to send cash…

May 23, 2017

Buy Ethereum’s ETH/ether in the Philippines

February 1, 2018 UPDATE The ETH wallet in the coins.ph Android app is now open…

May 1, 2017