troppmann
Member
Posted 6 years ago #
i am trying to add an icon in the navigator address line at the beginning of the address, like on this page for support...the w up there...
anyway, in html it would be in the header before the body with this:
<link rel="shortcut icon" href="j.ico">
i am not quite sure where to put in WordPress...any help? thanx...
All you have to do is add this to your header.php (or whatever your header file is):
<link rel="icon" href="<?php bloginfo('template_url'); ?>/favicon.png" />. Then just put the icon in the template folder in your themes folder. Usually this icon is 16x16.
troppmann
Member
Posted 6 years ago #
hmmm, thanx for the response...icon is in place and this is the code i have going yet it doesnt seem to be working even after a cache refresh...
<link rel="icon" href="<?php bloginfo('template_url'); ?>/j.ico" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
troppmann
Member
Posted 6 years ago #