Change the WordPress "Howdy" (3.0+)


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2. add_filter('admin_user_info_links','not_howdy');
  3.  
  4. function not_howdy($links) {
  5. $greeting = 'Yo';
  6. $links['5'] = str_replace('Howdy',$greeting, $links['5']);
  7. return $links;
  8. }
  9. ?>

URL: http://trepmal.com/wordpress-tips/change-howdy-to-somthing-else/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.