Created
January 30, 2012 21:39
-
-
Save rachelbaker/1706881 to your computer and use it in GitHub Desktop.
Clean up the WordPress head section
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 | |
/** | |
* Cleaning up the WordPress <head> section | |
*/ | |
function rb_cleanupheaderlinks() { | |
remove_action('wp_head', 'rsd_link'); | |
remove_action('wp_head', 'wlwmanifest_link'); | |
remove_action('wp_head', 'wp_generator'); | |
} | |
add_action('init', 'rb_cleanupheaderlinks'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment