-
-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
The OG plugin inserts the following Meta tag with itemprop reference author to the <head>, but this is invalid – it is even not allowed with something else than a CreativeWork or Book(Series):
<meta itemprop="author" content="Oliver">Rather, a JSON-LD markup for Person would be the right way to insert this (as Microdata markup within the page's structure might be too complicated).
→ Refer to the specs here or use this handy online Person Markup-builder (although this has also some invalid markup, like worksFor).
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "Oliver Atgithub",
"jobTitle": "WP User Role?",
"sameAs": [
"https://twitter.com/twittername",
"https://linkedin.com/linkedinuser",
"https://personalwebsite.com/"
]
}
</script>Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working