Opened 3 years ago
Closed 3 years ago
#14416 closed feature request (wontfix)
Dashboard wants a favicon!
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | 3.0 |
| Severity: | normal | Keywords: | favicon |
| Cc: |
Description
I know it's trivial, but who wouldn't an icon displayed when browsing WordPress admin area? =)
Change History (2)
- Milestone Awaiting Review deleted
- Resolution set to wontfix
- Status changed from new to closed
I think the dealbreaker here, besides messing with others' favicons, is that you won't be able to distinguish backends.
This should work fine:
add_action( 'admin_head', 'my_wp_admin_favicon' );
my_wp_admin_favicon() {
echo '<link rel="shortcut icon" href="http://www.example.com/myicon.ico" />';
}
Closing as wontfix.
Note: See
TracTickets for help on using
tickets.

If you have a favicon for the frontend of your site, it is also displayed on your dashboard. (If I remember correctly, all latest versions of all major browsers pick the favicon up.)
Why should WordPress mess with that?
Also see: #11413