Skip to content

trepmal.com

  • Home
  • Plugins
  • Github
  • Me on WP.org
  • Donate

Categories

  • WordPress Bits (149)
  • Uncategorized (11)
  • Scripts (5)
  • Tidbits (5)
  • Fun (3)

Tags

  • wordpress (30)
  • administration (16)
  • plugin (9)
  • free download (8)
  • functions.php (8)

Year

  • 2018 (8)
  • 2016 (2)
  • 2015 (4)
  • 2014 (19)
  • 2013 (11)

Tag: howdy

Change “Howdy” to Another Greeting

If “Howdy” just ain’t your thing, use this to change it to something more your style.

add_filter('admin_user_info_links', 'change_howdy');
function change_howdy($links) {
	$links[5] = str_replace('Howdy', 'Greetings', $links[5]);
	return $links;
}
Posted on February 25, 2011March 1, 2012Categories WordPress BitsTags administration, howdyLeave a comment on Change “Howdy” to Another Greeting
Proudly powered by WordPress