Hello
How do I delete the whole function "Browse Happy". I am a little sad it is still all over WordPress to be honest. I have figured it is on line 912 of "template.php" (admin/includes/template.php):
function browse_happy() {
$getit = __( 'WordPress recommends a better browser' );
echo '
<span id="bh" class="alignright"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></span>
';
}
So I delete that and the 'browse_happy' section below it but then I get the following error:
Warning: call_user_func_array() [function.call-user-func-array]: First argumented is expected to be a valid callback, 'browse_happy' was given in /home/mak0sch/public_html/blog/wp-includes/plugin.php on line 311
to where I searched that line but it has nothing to do with it. I know I could just take the image out but I don't even want it to load the function as it will simpy slow it down.
Thanks