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 أعضاء وجدوا هذه المقالة مفيدة
هل كانت المقالة مفيدة ؟

Related Articles

Extended List of WordPress Ping Update Services

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

What are the Performance Benefits of CloudLinux?

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

How to Install and Enable WP-CLI on WHM cPanel Server

This article provides a guide for how to install and enable WP-CLI on cPanel WHM server. This...

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....