Skip to content

Instantly share code, notes, and snippets.

@avclark
Created May 3, 2014 04:26
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 avclark/25df7ddd6050d8c7614e to your computer and use it in GitHub Desktop.
Save avclark/25df7ddd6050d8c7614e to your computer and use it in GitHub Desktop.
Cleanup unnecessary code from wp_head by adding this code to functions.php
<?php
remove_action('wp_head', 'rsd_link');
remove_action('wp_head', 'wlwmanifest_link');
remove_action('wp_head', 'wp_generator');
remove_action('wp_head', 'start_post_rel_link');
remove_action('wp_head', 'index_rel_link');
remove_action('wp_head', 'adjacent_posts_rel_link');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment