I found this in the script and when I did research on it, apparently its to allow people who use Microsoft stuff to post...
(http://www.hants-web.co.uk/Blog/free-downloads/disable-wordpress-wlwmanifestxml-plugin/)
Frankly I don't want to have to download "another" plugin just to remove it, it doesn't bother me to get into the code if its fairly easy to remove.
Can someone please instruct me on what to do/how to get it off my pages?
I searched, but no one has an answer (one person posted 10 months ago but it was never answered... not good :( )
Thanks,
Amber
Add this to your theme's functions.php:
remove_action('wp_head', 'wlwmanifest_link');
Thanks...
any particular place? I've looked at the functions.php, but am not sure where I put that. (Sorry - not a php coder, just able to manipulate).
Don't add them in the middle of another function, but something like this:
<?php
remove_action('wp_head', 'wlwmanifest_link');
// other helper functions you might have, i.e.
$numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish'");
if (0 < $numposts) $numposts = number_format($numposts);
$numcmnts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'");
if (0 < $numcmnts) $numcmnts = number_format($numcmnts);
?>
Thank you very much - that helped and it worked great! :)
Amber