Skip to content

Instantly share code, notes, and snippets.

@rachelbaker
Created January 30, 2012 21:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rachelbaker/1706881 to your computer and use it in GitHub Desktop.
Save rachelbaker/1706881 to your computer and use it in GitHub Desktop.
Clean up the WordPress head section
<?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