Make WordPress Core

Opened 14 years ago

Closed 14 years ago

#14416 closed feature request (wontfix)

Dashboard wants a favicon!

Reported by: hpguru's profile hpguru Owned by:
Milestone: Priority: normal
Severity: normal Version: 3.0
Component: Administration Keywords: favicon
Focuses: Cc:

Description

I know it's trivial, but who wouldn't an icon displayed when browsing WordPress admin area? =)

Change History (2)

#1 @demetris
14 years ago

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

#2 @nacin
14 years ago

  • 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.