Why: AI engines heavily weight named authorship as an E-E-A-T trust signal. Anonymous content is less likely to be cited. A named author with credentials tells AI engines that a real expert stands behind the content.
How to do it — two parts:
First, add a visible author byline to your page HTML with the author's name and role:
<div class="author-bio">
<span>Written by <strong>Jane Smith</strong>,
Senior Marketing Strategist</span>
</div>
Second, add Person schema in your <head>:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Jane Smith",
"jobTitle": "Senior Marketing Strategist",
"url": "https://yoursite.com/about"
}
</script>
If you don't want to use a real name, use your brand or organization as the author with an Organization schema instead — it still scores the authorship signal.
+6 pts — Author presence signal