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>
The OG plugin inserts the following Meta tag with itemprop reference
authorto the<head>, but this is invalid – it is even not allowed with something else than aCreativeWorkorBook(Series):Rather, a JSON-LD markup for
Personwould 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).