SEO Settings on Theme
Look for following codes and replace them accordingly.
<!-- Facebook -->
<meta content='your_image.webp' property='og:image'/>
<!-- Twitter -->
<meta content='your_image.webp' name='twitter:image:src'/>
<!-- Meta Owner -->
<meta content='Your Name' name='Author'/>
<link href='https://www.facebook.com/xxxxx' rel='me'/>
<link href='https://www.facebook.com/xxxxx' rel='author'/>
<link href='https://www.facebook.com/xxxxx' rel='publisher'/>
<meta content='xxxxx' property='fb:admins'/>
<meta content='xxxxx' property='fb:pages'/>
<meta content='xxxxx' property='fb:app_id'/>
<meta content='https://www.facebook.com/xxxxx' property='article:author'/>
<meta content='https://www.facebook.com/xxxxx' property='article:publisher'/>
<meta content='Twitter_Handler' name='twitter:site'/>
<meta content='Twitter_Handler' name='twitter:creator'/>
<!-- Owner Sife Verification -->
<meta content='xxxxx' name='msvalidate.01'/>
<meta content='xxxxx' name='yandex-verification'/>
<meta content='xxxxx' name='alexaVerifyID'/>
<meta content='xxxxx' name='p:domain_verify'/>
<meta content='xxxxx' name='dmca-site-verification'/>
<meta content='xxxxx' name='follow.it-verification-code'/>
<meta content='Your_Site_Name' name='copyright'/>
Similarly, look for this code and replace your_image.webp
with your image.
<b:includable id='postMetadataJSONImage'>
"image": {
"@type": "ImageObject",
"url": "<b:eval expr='(data:post.featuredImage ? resizeImage(data:post.featuredImage, 1200, "1200:630") :
"your_image.webp").jsonEscaped'/>",
"height": <b:eval expr='data:post.featuredImage ? 630 : 348'/>,
"width": 1200
},
</b:includable>
<b:includable id='postMetadataJSONPublisher'>
"publisher": {
"@type": "Organization",
"name": "<data:blog.title.escaped/>",
"logo": {
"@type": "ImageObject",
"url": "your_image.webp",
"width": 200,
"height": 200
}
},
</b:includable>
Final step: Make changes to following json scripts.
<script type='application/ld+json'>
{
"@context": "http://schema.org/",
"@type": "Person",
"name": "YOUR_NAME",
"email": "contact@your_website.com",
"url": "https://www.twitter.com/xxxx",
"image": "your_image.webp",
"birthPlace": "xxxx",
"gender": "xxxx",
"nationality": "xxxx",
"jobTitle": "Admin",
"worksFor": {
"@type": "Organization",
"name": "Your_Company_Name",
"url": "https://www.your-website.com"
}
}
</script>
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your_Company_Name",
"alternateName": "Your_Company_Alternative_Name",
"description": "Your_Company_Meta_Description",
"url": "Your_Company_ADDRESS",
"logo": "Your_Company_LOGO",
"image": "Your_Company_IMAGE",
"foundingDate": "Your_Company_Date",
"founders": [
{
"@type": "Person",
"name": "Your_Company_Admin_Name"
}
],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "xxxx",
"contactType": "customer service",
"areaServed": "xxxx",
"availableLanguage": [
"en",
"xxxx"
]
},
"sameAs": [
"https://www.twitter.com/xxxx",
"https://www.facebook.com/xxxx",
"https://www.pinterest.com/xxxx",
"https://www.mix.com/xxxx",
"https://www.instagram.com/xxxx",
"https://www.linkedin.com/in/xxxx",
"https://www.github.com/xxxx"
],
"address": {
"@type": "PostalAddress",
"streetAddress": "Your_Company_ADDRESS",
"addressRegion": "Your_Company_Name_Region",
"postalCode": "Your_Company_Postal_Code",
"addressCountry": "Your_Company_Location"
}
}
</script>