<?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