Created
August 20, 2019 20:32
-
-
Save nullvariable/c7a306c0b28a1d5841120297a9ec7da9 to your computer and use it in GitHub Desktop.
Remove query strings from WordPress static assets
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
<?php | |
function remove_query_strings() { | |
if(!is_admin()) { | |
add_filter('script_loader_src', 'strip_query_string', 15); | |
add_filter('style_loader_src', 'strip_query_string', 15); | |
} | |
} | |
function strip_query_string($src){ | |
$output = preg_split("/(&ver|\?ver)/", $src); | |
return $output[0]; | |
} | |
add_action('init', 'remove_query_strings'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment