Created
March 8, 2012 07:04
-
-
Save maxxscho/1999314 to your computer and use it in GitHub Desktop.
Wordpress: Remove unnecessary Headlinks
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 UNNECESSARY HEADLINKS ------------------- */ | |
/*------------------------------------------------------------ */ | |
function bb_remove_headlinks() { | |
// remove simple discovery link | |
remove_action('wp_head', 'rsd_link'); | |
// remove windows live writer link | |
remove_action('wp_head', 'wlwmanifest_link'); | |
// remove the version number | |
remove_action('wp_head', 'wp_generator'); | |
remove_action('wp_head', 'start_post_rel_link'); | |
remove_action('wp_head', 'index_rel_link'); | |
} | |
add_action( 'init', 'bb_remove_headlinks' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment