Remove wlwmanifest Link From WordPress?

The wlwmanifest link is a link to Windows Live Writer’s manifest file, which provides information about a blog’s structure to the blogging software. If you are not using Windows Live Writer to edit your WordPress posts, this link is not necessary and can be removed. Here is a PHP code snippet to remove the wlwmanifest link from your WordPress site’s head section:

function remove_wlwmanifest_link() {
    remove_action('wp_head', 'wlwmanifest_link');
}
add_action('init', 'remove_wlwmanifest_link');
Was this guide helpful?
YesNo