Opened 18 months ago
Closed 17 months ago
#19490 closed feature request (wontfix)
Filter for 'Howdy' text in admin bar
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Toolbar | Version: | 3.3 |
| Severity: | minor | Keywords: | has-patch needs-testing |
| Cc: |
Attachments (1)
Change History (3)
There is already 'gettext' filter where you can globally replace "Howdy" in all WordPress versions.
Example:
function md_replace_howdy( $text ) {
$text = str_replace( 'Howdy', 'Hi', $text );
return $text;
}
add_filter( 'gettext', 'md_replace_howdy' );
Or a little different code on wpmu.org.
- Milestone Awaiting Review deleted
- Resolution set to wontfix
- Status changed from new to closed
No need to go around your elbow, just bend it and your arm's right there. :)
The gettext filter is already there, as noted. "Howdy" is part of WordPress's DNA -- we won't go out of the way to provide additional methods of removing it.
Note: See
TracTickets for help on using
tickets.

Apply targeted filter to 'Howdy' text