facebooktwitterskypeRSS Feed
telephone: (920) 215-1842
facsimile: (866) 456-2115

WLWManifest Disable

After installing and upgrading to WordPress 2.3.1 or later version, developers are likely to see the following additional line of HTML code in the section of the web page:

<link rel=”wlwmanifest” type=”application/wlwmanifest+xml” href=”http://www.domain.com/wp-includes/wlwmanifest.xml” />

The line above is to help the discovery and downloading of Windows Live Writer (WLW) editing manifest file, a XML document that customizes the capabilities of WLW blog editor, correctly determines the weblog features supported by WordPress XML-RCP based weblog APIs, and numerous other functions, to the desktop editor.

The ‘wlwmanifest’ declaration works in much the same way as RSD (Really Simple Discovery) resource file that helps client software find the services needed to read, edit, or simply to work with web blogging software. The difference is that WLWManifest is specific to Windows Live Writer.

One main support the ‘wlwmanifest’ added is to enable tagging support for Windows Live Writer. Since WordPress 2.3, native tags or keywords support was added to WordPress core. Without wlwmanifest.xml file advertises the tag/keyword support of WordPress to WLW, the client program won’t know, and will hide and not showing the “Keywords” field, which work properly with WordPress.com and WordPress 2.3 tags.

So if you’re not using Windows Live Writer (it’s a good and convenient blog writing software though), you probably don’t need this line of HTML text in your blog header. It’s inserted by wp_head() function, so to remove the ‘wlwmanifest’ add the following line of code in the header.php file above the wp_head(); function.

<?php remove_action('wp_head','wlwmanifest_link'); ?>
<?php wp_head(); ?>

 

Related posts:

  1. Using Sessions in WordPress
  2. Disable thumbs.db in Windows 7 Home Premium
  3. Advanced Excerpt – WordPress Plugin
  4. Upgrading WordPress automatically – Permissions
  5. VMWare vSphere on Windows 7

1 Comment to WLWManifest Disable

  1. Sunday, June 6, 2010 at 11:01 am | Permalink

    That’s a neat little find, thanks for the note. I’ve been using WLW to post on my blogs for about a year now, but as I’m working from my Mac more often now and starting post from my Android phone now and then, I’m using it less.

    I’ll have to remember this for when I kick the WLW habit altogether.

Leave a Reply