Skip to content

Instantly share code, notes, and snippets.

@tacensi
Created February 19, 2015 00:25
Show Gist options
  • Save tacensi/27d566ad6f5f63e88558 to your computer and use it in GitHub Desktop.
Save tacensi/27d566ad6f5f63e88558 to your computer and use it in GitHub Desktop.
Remove trash from wp_head
// remove unncessary header info
function frq_remove_header_info() {
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');
}
add_action('init', 'frq_remove_header_info');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment