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
/* | |
Remove meta tags for generator, feed links, and pagination | |
Useful for landing pages or static, stand-alone sites/pages. | |
*/ | |
remove_action( 'wp_head', 'wp_generator'); | |
remove_action( 'wp_head', 'feed_links', 2 ); | |
remove_action( 'wp_head', 'feed_links_extra', 3 ); | |
remove_action( 'wp_head', 'rsd_link'); // EditURI | |
remove_action( 'wp_head', 'wlwmanifest_link'); // Windows Live Writer |