- http://example.com (Original-Website)
- http://fr.example.com (übersetzte Version)
Auf der Hauptwebsite (englische Version) finden Sie hier das Markup I verwendet:
Code: Select all
{
"@context": "http://schema.org",
"@type": "Organization",
"@id": "https://website.com/#organization",
"name": "My Website",
"url": "http://example.com/",
"logo": "http://example.com/logo.png",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+2348157437268",
"contactType": "customer service"
},
"sameAs": [
"https://www.facebook.com/examplefb",
"https://twitter.com/exampletwitter",
"https://instagram.com/exampleig"
]
}
{
"@context": "http://schema.org",
"@type": "WebSite",
"@id": "http://example.com/#website",
"url": "http://example.com/",
"inLanguage": "en",
"publisher": {"@id": "http://example.com/#organization"}
}
Code: Select all
{
"@context": "http://schema.org",
"@type": "WebSite",
"@id": "http://fr.example.com/#website",
"url": "http://fr.example.com/",
"inLanguage": "fr",
"publisher": {"@id": "https://website.com/#organization"}
}
- sollte ich den Herausgeber als „@id“ belassen: „http://example.com/#organization“? ODER
- sollte ich das Organization Script-Tag auch in die französische Homepage kopieren? ODER
- sollte ich einfach die Organisationsdetails kopieren und in „Herausgeber“ auf der französischen Seite einfügen?
Vielen Dank.
Mobile version