Skip to content

Instantly share code, notes, and snippets.

@akinayturan
Created February 10, 2015 20:29
Show Gist options
  • Save akinayturan/7fb0d6368990aeb9f698 to your computer and use it in GitHub Desktop.
Save akinayturan/7fb0d6368990aeb9f698 to your computer and use it in GitHub Desktop.
WP ~ Eklentilerin Gereksiz Kodlarını Kaldırma
<?php
//epfarki.com //Gereksiz .css ve .js dosyalarını kaldırma
function stil_sil() {
if(!is_page('İletişim')){
wp_deregister_style( 'contact-form-7' );
}
wp_deregister_style( 'cptchStylesheet' );
wp_deregister_style( 'codecolorer' );
wp_deregister_script( 'wp-recentcomments-jquery' );
}
add_action('wp_print_styles', 'stil_sil');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment