How to change the WordPress favicon?
I'm looking for a way to change the WordPress favicon. Any hints how to do this?
I'm looking for a way to change the WordPress favicon. Any hints how to do this?
I used:
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/favicon.ico">
with favicon.ico in the root of the theme.
Just upload a "favicon.ico" file to your websites root and that's it! Actually, Fernando's answer works too:
<link rel="icon" type="image/png" href="http://yourblog.com/favicon.png">
And to add Favicons for Apple devices add this to your head:
<link rel="apple-touch-icon" href="/customIcon.png"/>
Simply Paste this code to functions.php and change href with your favicon path
function blog_favicon() {
echo '<link rel="Shortcut Icon" type="image/x-icon" href="'.get_bloginfo('wpurl').'/favicon.ico" />';
}
add_action('wp_head', 'blog_favicon');
To make the list of answers complete, in the above answers were mentioned (see also http://en.wikipedia.org/wiki/Favicon) and your choice:
embed it directly in the page using e.g. base64 encoding: e.g href="data:image/x-icon;base64,iVBORw0==" , this is also NOT supported by all browsers but there are quite some sites using it.
From the other side, if I look for a favion I:
p.s. you can ofcourse apply all these methods for your site to give the widest support possible ;)
For a little bit interoperability, consider using the Microsoft Icon format.
Just place a file called favicon.ico
with your icon grafik then into the root of your site.
That's important because many are requesting it directly.
Sure you should add the meta to your site's output as well, it goes into the html head section:
<link rel="shortcut icon" href="http://example.com/favicon.ico" type="image/x-icon"/>
Doing so will make it work in a large share of browsers and it will prevent 404s error messages in your server-logs as the meta href is not reflected by all user-agents.
A HTML head related WordPress hook is wp_head
(Wordpress Codex):
add_filter('wp_head', function(){
printf("%s\n", '<link rel="shortcut icon" href="http://example.com/favicon.ico" type="image/x-icon"/>');
});
Since version 3, WordPress has an empty favicon.ico build in.
If you're interested in some details, there was some discussion going on in Should include default favicon (Ticket #3426) and Discard requests for favicon.ico (Ticket #11412) which resulted in that default 0-byte long virtual /favicon.ico
file (if wordpress placed inside the server root).
So it's basically a file the browser will fail at in a default setup w/o a user-added /favicon.ico
file.
In case you support IE 6, a small warning: The favicon does not show in toolbar unless the url is added to 'Favorites' (bookmarks), and the favicons are stored in IE cache, so will get deleted when you delete the cache, or when gets periodically deleted.
You should add it on your theme's header.php file with this code (W3C standard code):
<link rel="icon" type="image/png" href="http://yourblog.com/favicon.png">
Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.