Article and BlogPosting schema: author, datePublished and E-E-A-T signals

Module 6: Technical SEO, Structured Data & Rich Snippets for Wix | Lesson 59 of 571 | 55 min read

By Michael Andrews, Wix SEO Expert UK

Article and BlogPosting schema send powerful E-E-A-T signals to Google by explicitly connecting your content to a verified author, a publication date, and a publisher identity. In an era where Google increasingly evaluates content quality through the lens of Experience, Expertise, Authoritativeness, and Trustworthiness, Article schema is one of the most important structured data types for any Wix site that publishes content. Every Wix blog post should have this schema. This lesson covers the differences between Article types, all available properties, E-E-A-T optimisation, integration with Wix Blog, and advanced patterns for maximum impact.

How-to diagram showing technical SEO elements including JSON-LD structured data markup, schema types, site speed optimisation, and rich snippet results in Google
Technical SEO and structured data transform how Google displays your Wix site in search results with rich snippets and enhanced listings.

Article vs BlogPosting vs NewsArticle

Schema.org provides several article types. Choosing the right one helps Google understand and categorise your content correctly.

When in Doubt: For most Wix blog posts, use BlogPosting. For cornerstone pages that are not part of a blog feed, use Article. Only use NewsArticle if your content is genuine, time-sensitive news.

Why Article Schema Matters for E-E-A-T

Google's Quality Raters Guidelines emphasise E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness) as a key factor in content quality assessment. Article schema directly supports multiple E-E-A-T dimensions.

Essential BlogPosting Properties

Complete BlogPosting Schema Template

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BlogPosting",
  "headline": "How to Optimise Your Wix Site for Core Web Vitals in 2026",
  "description": "A comprehensive guide to improving your Wix site's Core Web Vitals scores including LCP, INP, and CLS optimisation techniques.",
  "image": {
    "@type": "ImageObject",
    "url": "https://yoursite.com/images/core-web-vitals-guide.jpg",
    "width": 1200,
    "height": 630
  },
  "datePublished": "2026-01-15T09:00:00+00:00",
  "dateModified": "2026-03-10T14:30:00+00:00",
  "wordCount": 3500,
  "articleSection": "Technical SEO",
  "keywords": ["Core Web Vitals", "Wix SEO", "page speed", "LCP", "CLS"],
  "author": {
    "@type": "Person",
    "name": "Michael Andrews",
    "url": "https://yoursite.com/about",
    "jobTitle": "SEO Specialist",
    "sameAs": [
      "https://www.linkedin.com/in/michaelandrews",
      "https://twitter.com/michaelandrews"
    ]
  },
  "publisher": {
    "@type": "Organization",
    "name": "Your Business Name",
    "url": "https://yoursite.com",
    "logo": {
      "@type": "ImageObject",
      "url": "https://yoursite.com/logo.png",
      "width": 600,
      "height": 60
    }
  },
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://yoursite.com/blog/core-web-vitals-wix-guide"
  }
}
</script>

Author Properties: Maximising E-E-A-T

The author property is where you can add the most E-E-A-T value. Google uses author information to build an author entity and assess content credibility.

"author": {
  "@type": "Person",
  "name": "Michael Andrews",
  "url": "https://yoursite.com/about",
  "jobTitle": "Wix SEO Specialist",
  "description": "Michael Andrews is a certified Wix SEO specialist with 8 years of experience optimising Wix websites for search engines.",
  "image": "https://yoursite.com/images/michael-andrews.jpg",
  "sameAs": [
    "https://www.linkedin.com/in/michaelandrews",
    "https://twitter.com/michaelandrews",
    "https://www.wix.com/marketplace/michaelandrews"
  ],
  "alumniOf": {
    "@type": "Organization",
    "name": "SEMrush Academy"
  },
  "knowsAbout": ["SEO", "Wix", "Structured Data", "Content Strategy"]
}
Author Entity Building: Google builds author entities by connecting author information across the web. The more consistent your author details are across your website, LinkedIn, Google Scholar, guest posts, and other platforms, the stronger the author entity signal. Use the same name, photo, and bio everywhere.

Publisher Properties

The publisher connects individual articles to your business entity. Use the same Organization information as your site-wide Organization or LocalBusiness schema.

"publisher": {
  "@type": "Organization",
  "name": "Your Business Name",
  "url": "https://yoursite.com",
  "logo": {
    "@type": "ImageObject",
    "url": "https://yoursite.com/logo.png",
    "width": 600,
    "height": 60
  },
  "sameAs": [
    "https://www.facebook.com/yourbusiness",
    "https://www.linkedin.com/company/yourbusiness"
  ]
}
Logo Requirements: Google recommends the publisher logo be rectangular (not square), at least 600px wide, with a height no greater than 60px. The logo should be your actual business logo on a solid background, not a photograph.

Date Properties and Content Freshness

Date properties signal content freshness, which is an increasingly important ranking factor.

Date Integrity: Google cross-references your schema dates with other signals (cached page versions, Wayback Machine, indexing history). Manipulating dates to appear more current than reality can result in trust penalties. Only update dateModified when you have made genuine, substantial updates to the content.

Adding BlogPosting Schema to Wix Blog Posts

Complete implementation process

Wix Blog and Automatic Article Schema

Wix Blog adds some basic article schema automatically. However, the automatically generated schema is minimal and missing many E-E-A-T enhancing properties.

Combining Article Schema with Other Types

Blog posts often benefit from combining BlogPosting with BreadcrumbList and potentially FAQPage or HowTo schema.

{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "BlogPosting",
      "headline": "Your Article Title",
      "author": { "@type": "Person", "name": "Your Name", "url": "https://yoursite.com/about" },
      "datePublished": "2026-01-15",
      "publisher": { "@type": "Organization", "name": "Your Business", "logo": { "@type": "ImageObject", "url": "https://yoursite.com/logo.png" } }
    },
    {
      "@type": "BreadcrumbList",
      "itemListElement": [
        { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://yoursite.com" },
        { "@type": "ListItem", "position": 2, "name": "Blog", "item": "https://yoursite.com/blog" },
        { "@type": "ListItem", "position": 3, "name": "Your Article Title" }
      ]
    },
    {
      "@type": "FAQPage",
      "mainEntity": [
        { "@type": "Question", "name": "Question?", "acceptedAnswer": { "@type": "Answer", "text": "Answer." } }
      ]
    }
  ]
}

Article Schema for Cornerstone Content

For your most important, comprehensive guides (not blog posts), use Article type instead of BlogPosting and add additional properties that signal depth and authority.

Common Article Schema Mistakes

Monitoring Article Rich Results

Final Checkpoint: Every blog post should have BlogPosting schema with comprehensive author information (name, url, jobTitle, sameAs), accurate datePublished and dateModified, publisher details with logo, a main article image, and mainEntityOfPage canonical URL. Rich Results Test should show zero errors. Monitor Google Search Console for article-related Enhancements and build your author entity consistently across all platforms.

This lesson on Article and BlogPosting schema: author, datePublished and E-E-A-T signals is part of Module 6: Technical SEO, Structured Data & Rich Snippets for Wix in The Most Comprehensive Complete Wix SEO Course in the World (2026 Edition). Created by Michael Andrews, the UK's No.1 Wix SEO Expert with 14 years of hands-on experience, 750+ completed Wix SEO projects and 425+ verified five-star reviews.