Search code examples
htmlwordpresswordpress-theming

The Favicon is not showing on my wordpress website especially on Chrome


I have uploaded the favicon on my wordpress website but it is not showing on chrome. http://babygearsmalaysia.com

Can anyone help me please?


Solution

  • The correct way to add a favicon is without shortcut, so instead of

    <link rel="shortcut icon" href="YOURPATH/favicon.png">
    

    you should use

    <link rel="icon" href="YOURPATH/favicon.png">
    

    Even better would be to leave out the tag and just use an favicon.ico file in your root directory. Further reading