Remove Query Strings from Static Assets in WordPress Website


This article provides the required steps to remove query strings from static assets in WordPress websites.

Edit WordPress Theme functions.php File

Add the following code to the theme's functions.php file (located in /wp-content/themes/themename/ directory):

//remove query strings from static assets
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 );
  • wordpress, theme
  • 3 Usuários acharam útil
Esta resposta lhe foi útil?

Related Articles

Extended List of WordPress Ping Update Services

This article provides an extended list of WordPress ping Update Services. This list is an...

Features of Softaculous WordPress Manager

All Rad Web Hosting servers used in fulfilment of cPanel Hosting and WHM Reseller Hosting...

How to Install WordPress Using Softaculous

This tutorial will guide you how to install WordPress with just few clicks using Softaculous....

What are the Performance Benefits of CloudLinux?

CloudLinux is the operating system used on the servers for shared hosting, reseller hosting,...

How to Safely Rename WordPress Database

This article provides a guide for how to safely rename WordPress database. This guide is intended...