<?php
/*
Plugin Name: Windows Live Writer Header Remover (removes wlwmanifest & rsd links)
Plugin URI: http://www.taragana.com/products
Description: Removes the two new header lines added to WordPress by default. This plugin will prevent them from displaying on your blog. Read <a href="http://blog.taragana.com/index.php/archive/wordpress-plugin-to-disable-wlw_manifest-edituri-link-from-wordpress-blog-header">here</a> for more details. This will work on all versions of WordPress.
Version: 1.0
Author: Angsuman Chakraborty
Author URI: http://blog.taragana.com
*/
add_action('init', 'disableWPJunk');
function
disableWPJunk() {
    
remove_action('wp_head', 'wlwmanifest_link');
    
remove_action('wp_head', 'rsd_link');
}
?>