Revision: 29526
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 31, 2010 06:21 by trepmal
Initial Code
<?php
add_filter('admin_user_info_links','not_howdy');
function not_howdy($links) {
$greeting = 'Yo';
$links['5'] = str_replace('Howdy',$greeting, $links['5']);
return $links;
}
?>
Initial URL
http://trepmal.com/wordpress-tips/change-howdy-to-somthing-else/
Initial Description
Initial Title
Change the WordPress "Howdy" (3.0+)
Initial Tags
wordpress
Initial Language
PHP