I am trying to upload my favicon and have uploaded the .ico file and also this code in the right place but the icon doesn't show any ideas?
<link rel="icon" href="<?php echo bloginfo('template_url'); ?>/images/favicon.ico" type="image/png" />
I am trying to upload my favicon and have uploaded the .ico file and also this code in the right place but the icon doesn't show any ideas?
<link rel="icon" href="<?php echo bloginfo('template_url'); ?>/images/favicon.ico" type="image/png" />
Hi,
You should place the code on header.php inside the <head> tag. Instead of this code
<link rel="icon" href="<?php echo bloginfo('template_url'); ?>/images/favicon.ico" type="image/png" />
Try to change the favicon url, something like this.
<link rel="icon" href="http://www.your-website.com/wp-content/themes/newscast/images/favicon.ico" type="image/png" />
Regards,
Ismael
perfect that works nice one
This topic has been closed to new replies.