Last active
December 25, 2023 19:51
-
-
Save brianleejackson/51150fd569816a40457c1cc83eda68bc to your computer and use it in GitHub Desktop.
Remove query strings from static resources in WordPress. Source: https://perfmatters.io/docs/remove-query-strings-from-static-resources/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Remove Query Strings | |
/***********************************************************************/ | |
add_action('init', 'remove_query_strings'); | |
function remove_query_strings() { | |
if(!is_admin()) { | |
add_filter('script_loader_src', 'remove_query_strings_split', 15); | |
add_filter('style_loader_src', 'remove_query_strings_split', 15); | |
} | |
} | |
function remove_query_strings_split($src) { | |
//strip query strings | |
$output = preg_split("/(&ver|\?ver)/", $src); | |
return $output[0]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment