How to save up another precious HTTP-request for the tiny favicon?

Everybody knows how to set up a favicon.ico link in their HTML: <link rel=”shortcut icon” href=”http://hi.org/icon.ico” type=”image/x-icon”> But it’s silly that for only a several-byte-tiny icon we need yet yet another potentially speed-penalizing HTTP request. So I wondered, how could I make that favicon part of a usable sprite (e.g., background-position=0px -200px;) that doubles as, … Read more

favicon.png vs favicon.ico – why should I use PNG instead of ICO?

Other than the fact that PNG is a more common image format, is there any technical reason to favor favicon.png vs. favicon.ico? I’m supporting modern browsers which all support PNG favorite icons. 9 s 9 replaced (and turned Community Wiki) due to numerous updates and notes from various others in this thread: ICOs and PNGs … Read more

How to add favicon to my site – in both front end and admin panel

How can I add favicon to my WordPress site in both front end, and admin panel. I’ve tried many ways, but failed. I know, to show favicon the code is: <link rel=”shortcut icon” href=”https://wordpress.stackexchange.com/questions/138098/images/favicon.ico” /> How can I implement it? 2 s 2 Update The following workaround is necessary for users who are using WordPress … Read more