What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 5 questions

Less than a minute. Find out how much you really know about Google search.

🕒 ~1 min 🎯 5 questions

Official statement

Having two bylines on a page does not trouble Google. However, it is advisable to add schema.org markup in only one place to avoid complications.
5:23
🎥 Source video

Extracted from a Google Search Central video

⏱ 57:16 💬 EN 📅 20/09/2019 ✂ 13 statements
Watch on YouTube (5:23) →
Other statements from this video 12
  1. 1:19 Faut-il vraiment garder vos pages d'événements en ligne après la date ?
  2. 4:37 Diviser ou fusionner un site : pourquoi Google ne transfère-t-il pas la valeur SEO comme pour un simple move ?
  3. 7:17 Google restreint les extraits enrichis d'avis : quels sites sont désormais exclus de la SERP ?
  4. 13:08 Comment enlever efficacement les pages hackées des résultats de recherche Google ?
  5. 16:56 Les bannières GDPR bloquent-elles vraiment l'indexation de vos contenus par Googlebot ?
  6. 21:42 Faut-il héberger ses images sur un sous-domaine CDN pour optimiser leur indexation ?
  7. 24:14 Faut-il encore utiliser le nofollow pour filtrer le crawl de navigation à facettes ?
  8. 31:39 Le JavaScript nuit-il encore au crawl Google en l'absence de rendu côté serveur ?
  9. 37:55 Le mobile-first indexing s'applique-t-il vraiment à tous les sites sans exception ?
  10. 38:23 Les sous-types de schéma affectent-ils réellement l'affichage des extraits enrichis ?
  11. 43:00 Pourquoi robots.txt et noindex ne suffisent-ils pas pour protéger vos serveurs de staging ?
  12. 46:20 Comment Google calcule-t-il vraiment la position affichée dans la Search Console ?
📅
Official statement from (6 years ago)
TL;DR

Google states that two bylines on the same page do not pose any crawling or ranking issues. The only recommendation pertains to schema.org markup: it should be applied to a single author to avoid conflicting signals. In practice, you can display multiple authors in plain HTML, but your JSON-LD should reference only one author entity.

What you need to understand

Why does Google differentiate between visual display and structured markup?

Google perceives two distinct layers: the HTML displayed to users and the structured data intended for robots. When you show two author names in your template, it's standard content that Googlebot treats like regular text. No specific signal is sent to the engine.

In contrast, schema markup of type Person or Organization sends an explicit signal: "this entity is the primary author of this content". If you duplicate this markup, you create ambiguity: two entities claim authorship. Google then has to arbitrarily choose which one to retain for rich snippets, knowledge panels, or E-E-A-T.

What technically distinguishes an HTML byline from schema.org markup?

A standard HTML byline looks like <p class="author">By Jean Dupont and Marie Martin</p>. It's formatted text, nothing more. Google reads it, indexes it, but draws no structured conclusion about the author's authority or identity.

Schema.org markup, on the other hand, follows a precise syntax: JSON-LD, Microdata, or RDFa. It explicitly declares "author": {"@type": "Person", "name": "Jean Dupont"}. This statement feeds Google’s internal systems: content attribution, reputation calculation, enhanced display in SERPs. Duplicating this block creates a conflict of interpretation.

In what scenarios do we actually encounter two bylines?

News sites regularly publish co-authored articles: a field journalist and a senior editorialist, or two experts from different domains. Corporate blogs often display "Written by X, reviewed by Y" or "Contribution from A with the help of B".

Some CMS automatically generate a technical byline ("Published by Admin") in addition to the actual author displayed. Other platforms may add a separate editorial signature at the bottom distinct from the main byline. All these cases create a visual multiplicity of authors, but rarely a technical duplication of the schema.

  • Multiple display in HTML: tolerated without restriction by Google, no negative impact observed.
  • Unique schema.org markup: only one entity should be declared as the primary author in JSON-LD.
  • Co-author cases: favor a list of secondary authors as contributors if the schema allows, or choose the dominant author.
  • Real risk: confusion in rich snippets if two contradictory author tags exist.
  • Technical solution: audit the JSON-LD with Search Console or a schema.org validator to detect duplicates.

SEO Expert opinion

Is this statement consistent with on-the-ground observations?

Yes, and it is even a rare point of clarity from Google. Among thousands of audits, no site penalized for displaying two HTML bylines has been documented. However, sites with duplicated or contradictory schema.org do encounter issues with enhanced displays: wrong author name in SERPs, lack of photo, inconsistency between the knowledge panel and the article.

A/B tests conducted on multi-author media show that Google systematically takes the first author block from JSON-LD when multiple exist. This is not random: it is the order of appearance in the source code that takes precedence. Practical conclusion: if you need to include just one, place it in the right spot from the beginning.

What nuances should be applied to this recommendation?

Mueller does not specify which author to choose when two contributors have equal weight. In a co-authored medical article by a doctor and a researcher, which one should be favored for E-E-A-T? Google doesn’t say — [To be verified] through tests if the order influences YMYL ranking.

Another gray area: articles updated by a second author. Should you modify the schema.org to reflect the new author, or keep the original author and add a separate editor? Google’s documents remain vague. In practice: sites that switch the author during a major update have seen no measurable fluctuations, so it’s probably safe — but without official confirmation.

In what scenarios could this rule cause problems?

Platforms with user-generated content (forums, Q&A, wikis) often display multiple contributors per page. If each section has its own author markup, Google may get confused. A concrete example: a Reddit thread with 15 replies, each marked up as schema.org — which one does Google retain for the featured snippet? No public data on that.

Multi-language sites with displayed translators may also create ambiguity. If you show "Original Author: X, Translated by Y" and markup both, Google could attribute the content to the translator rather than the real author. Not ideal for E-E-A-T. [To be verified] with tests on international sites with a strong translation component.

Warning: If your CMS automatically generates multiple author tags in different parts of the code (header, body, footer), a technical audit is necessary. Some WordPress or Drupal plugins create silent duplicates that you never see on screen but pollute the JSON-LD.

Practical impact and recommendations

What steps should you take on your current pages?

First reflex: open Search Console, go to the "Enhancements" tab, section "Articles". Google lists any detected markup errors here, including author duplicates. If nothing appears, you are likely clean. If warnings come up, inspect the source code of the affected URLs.

Then, run your templates through the official schema.org validator (validator.schema.org) or Google’s rich results testing tool. Specifically, look for multiple occurrences of "author" in the JSON-LD. If you find two, remove the one with the least editorial legitimacy — generally, that’s the technical author or the ghost admin account.

How to manage co-writing cases without losing information?

If you absolutely want to credit two authors in the schema, a solution exists: declare one primary author and add a contributors field. Example JSON-LD: {"author": {"@type": "Person", "name": "Marie Dupont"}, "contributor": [{"@type": "Person", "name": "Jean Martin"}]}. Technically valid, but Google does not yet utilize contributors in rich snippets — so no immediate SEO gain.

Another approach: visually display "By A and B" in plain HTML, but only markup the dominant author in schema.org. This is what major media outlets do: the reader sees both names, Google only sees one structurally. No documented negative impact on user experience or ranking.

What mistakes should absolutely be avoided during implementation?

Never markup "Admin" or "Editorial" as an author if a real name exists. Google values real Person entities with a publication history, verifiable social profiles, documented expertise. A generic author dilutes E-E-A-T rather than strengthens it.

Avoid also frequently changing the marked author on the same URLs. If Google sees that article X attributed to Jean suddenly becomes attributed to Marie and then to Paul, it may regard the author signal as unreliable and ignore it. Stability = credibility.

  • Audit the JSON-LD of your main templates (article, blog post, product page if applicable) to detect author duplicates.
  • Check Search Console for any warnings related to Article or NewsArticle markup.
  • If two HTML bylines exist, ensure that only one is marked up as schema.org — select the author with the strongest E-E-A-T signal.
  • For co-authorships, consider the contributor field if relevant, but don’t expect immediate SEO impact.
  • Test the enhanced display using Google’s tool after every schema modification to confirm the correct name appears.
  • Document the rule in your editorial guidelines to avoid future deviations when adding new contributors.
Managing multiple bylines is a technical detail that may seem minor, but it directly affects E-E-A-T and display in SERPs. Displaying multiple authors in HTML poses no issues; duplicating schema.org markup creates ambiguity exploitable by Google. Favor a single structured author, regularly validate your implementation, and stabilize your attributions over time. These fine optimizations of structured data often require an expert eye to avoid subtle pitfalls — if your editorial architecture is complex or your CMS generates difficult-to-manage automatic markup, the support of a specialized SEO agency may be invaluable to secure your author markup strategy in the long term.

❓ Frequently Asked Questions

Puis-je afficher trois auteurs visuellement sur une page sans risque SEO ?
Oui, vous pouvez afficher autant d'auteurs que nécessaire en HTML pur. Google ne pénalise pas l'affichage visuel multiple. Assurez-vous simplement que le balisage schema.org ne référence qu'un seul auteur principal.
Que se passe-t-il si je laisse deux balises author dans mon JSON-LD ?
Google choisira arbitrairement l'une des deux, généralement la première dans l'ordre du code source. Vous perdez le contrôle sur quel nom apparaît dans les rich snippets, et risquez des incohérences d'affichage dans les SERP.
Le champ contributor du schema.org a-t-il un impact sur le ranking ?
Aucun impact mesurable à ce jour. Google ne l'exploite pas encore dans les rich snippets ni dans les signaux E-E-A-T. C'est une bonne pratique pour la sémantique, mais sans gain SEO immédiat.
Faut-il modifier l'auteur balisé quand un article est mis à jour par quelqu'un d'autre ?
Pas de règle absolue. Si la mise à jour est majeure et change substantiellement le contenu, vous pouvez basculer l'author. Si c'est une correction mineure, conserver l'auteur original est plus sûr pour la cohérence historique.
Comment savoir si mon CMS génère des doublons de balisage author à mon insu ?
Utilisez l'outil de test des résultats enrichis de Google ou le validateur schema.org. Inspectez le code source de quelques pages types et recherchez toutes les occurrences de "author" dans le JSON-LD. Si vous en trouvez plusieurs avec des valeurs différentes, c'est un doublon à corriger.
🏷 Related Topics
Domain Age & History Structured Data

🎥 From the same video 12

Other SEO insights extracted from this same Google Search Central video · duration 57 min · published on 20/09/2019

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.