79791062

Date: 2025-10-15 10:40:12
Score: 1
Natty:
Report link

I recently found this type of need & I got Best Solutions as below for ?ver="1.0.0" etc which will remove version from every css & script.

This may be helpfull in your coding journey.

function theme_remove_script_version( $src ) {
    if ( strpos( $src, 'ver=' ) ) {
        $src = remove_query_arg( 'ver', $src );
    }
    return $src;
}
add_filter( 'script_loader_src', 'theme_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', 'theme_remove_script_version', 15, 1 );
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ravina Madhani