/ Published in: PHP
URL: http://scottnix.com/2011/polishing-thematics-head/
Clean up unnecessary code from the document head of WordPress, especially the WordPress version wp_generator.
Expand |
Embed | Plain Text
// clean up useless wordpress links in the head of the document // remove wp version number remove_action('wp_head', 'wp_generator'); // remove really simple discovery remove_action('wp_head', 'rsd_link'); // remove windows live writer xml remove_action('wp_head', 'wlwmanifest_link'); // remove index relational link remove_action('wp_head', 'index_rel_link'); // remove parent relational link remove_action('wp_head', 'parent_post_rel_link'); // remove relational start link remove_action('wp_head', 'start_post_rel_link'); // remove prev/next relational link remove_action('wp_head', 'adjacent_posts_rel_link_wp_head');
You need to login to post a comment.
