How do I add a favicon to my page?
Is there an 'overall header' php that I can add it to?
Thanks for any help!
How do I add a favicon to my page?
Is there an 'overall header' php that I can add it to?
Thanks for any help!
Just drop it in webroot, the same level as wp-config.php, and it will work.
If you want to be cross-browser precise, also use
<link rel="icon" href="<?php bloginfo('siteurl'); ?>/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="<?php bloginfo('siteurl'); ?>/favicon.ico" type="image/x-icon" />
in header.php and delete other favicon links to make it clean.
Thank you very much!
Is header.php the same as wpheader.php?
I have no idea what file wpheader.php might be. It's not a standard WP file name.
You can create favicon.ico using this online tool: Faviconer
Then follow the instructions on Faviconer to add new icon to your page.
You must log in to post.