Home > Enterprise >  How to change the image from the google search result of my website?
How to change the image from the google search result of my website?

Time:01-16

here’s the google search image I’m referring to

Can I change that toothbrush image to a different one? Or remove it entirely?

Also, my favicon is a different image, and has been for about a week. How can I change that in the search results?

I tried looking for ways to change the image but no luck. Any help is appreciated!

CodePudding user response:

Add these in head tag to specify the data in google search engine

<head>
<meta property="og:title" content="Your Title" />
<meta property="og:image" content="Your Image URL" />
<meta property="og:description" content="Description " />
<meta property="og:site_name" content="My Website, Inc." />
</head>
  • Related