Created
April 25, 2016 10:08
-
-
Save anonymous/ed888a38d4d3a0a77569b0075d485d39 to your computer and use it in GitHub Desktop.
WordPress: Statische Ressourcen von Query-Strings bereinigen
This file contains 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 evolution_remove_wp_ver_css_js( $src ) { | |
if ( strpos( $src, 'ver=' ) ) | |
$src = remove_query_arg( 'ver', $src ); | |
return $src; | |
} | |
add_filter( 'style_loader_src', 'evolution_remove_wp_ver_css_js', 9999 ); | |
add_filter( 'script_loader_src', 'evolution_remove_wp_ver_css_js', 9999 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment