Second Way to Create a Site Icon
If you have a theme that does not support an easy way to upload a site icon, you can do it via using code. Many people are afraid to even mess with the code of their website and if you are not comfortable with it, there are other options on the next pages.
To proceed with this way, you will first need to create a small 16 x 16 image that can be used as your Site Icon. You can do that easily by using a Favicon Generator.
Go to one of the following sites and upload an image that you want converted into your Site Icon.
Using HTML CodeOnce your site icon has been created, upload the file into your media library in your WordPress site. Log into your WordPress site and go to Media > Add New
Choose a file and click on the upload button
Copy the following code into the <head> section of your site. You can access the <head> section of your website, by going to Appearance > Editor and scrolling until you find the HTML tags <head>..........</head>
<link rel="icon"
type="image/ico"
href="http://yourwebsite.com/yoursiteicon.ico">
** Be sure to replace yourwebsite.com with your actual niche site and yoursiteicon with the file name of your site icon. **