Skip to content

Instantly share code, notes, and snippets.

@ofyalcin
Created December 26, 2016 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ofyalcin/dbb12819c31904150eafdc5a890e5a30 to your computer and use it in GitHub Desktop.
Save ofyalcin/dbb12819c31904150eafdc5a890e5a30 to your computer and use it in GitHub Desktop.
Wordpress versiyon numaralarını kaldırma kodu. Detaylı bilgi için https://blogkurdu.net/javascript-dosyalarini-footera-tasimak-wordpress/ adresini ziyaret edin.
// Version parametresini kaldır kodu başlangıcı
function vc_remove_wp_ver_css_js( $src ) {
if ( strpos( $src, 'ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'vc_remove_wp_ver_css_js', 9999 );
add_filter( 'script_loader_src', 'vc_remove_wp_ver_css_js', 9999 );
// Version parametresini kaldır kodu sonu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment