Skip to content

Instantly share code, notes, and snippets.

@zeshanshani
Created March 9, 2019 08:27
Show Gist options
  • Save zeshanshani/06b5ae1fd78e41971dcca516ad0778be to your computer and use it in GitHub Desktop.
Save zeshanshani/06b5ae1fd78e41971dcca516ad0778be to your computer and use it in GitHub Desktop.
<?php // Do not copy this line.
/**
* Remove Script Version
*
* This function removes the query string from the scripts and styles.
*
* Author: Zeshan Ahmed
* Author URI: https://zeshanahmed.com/
*
* @param string $src Source of the script/style
* @author Zeshan Ahmed
* @return string
*/
function wp_remove_script_version( $src ) {
$src_parts = explode( '?', $src );
return $src_parts[0];
}
add_filter( 'script_loader_src', 'wp_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', 'wp_remove_script_version', 15, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment