Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Last active February 11, 2017 11:46
Show Gist options
  • Save RhythmShahriar/ecf097945ee42874d7b8b1a9d7c0b1c4 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/ecf097945ee42874d7b8b1a9d7c0b1c4 to your computer and use it in GitHub Desktop.
/**-------------------------------------------------
* @package Code Snippets
* @link http://rhythmshahriar.com/codes/
* @author Rhythm Shahriar <[email protected]>
* @link http://rhythmshahriar.com
* @copyright Copyright © 2017, Rhythm Shahriar
---------------------------------------------------*/
#Remove Query Strings from Static Resources
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 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment