Files
ALwrity/docs-site/docs/features/integrations/wix/seo-metadata.md
2025-11-17 17:38:23 +05:30

1.6 KiB
Raw Permalink Blame History

SEO Metadata (Wix)

This page summarizes what ALwrity posts to Wix and what remains out of scope.

Posted to Wix

  • Keywords (seoData.settings.keywords)
    • Main keyword: focus_keywordisMain: true
    • Additional: blog_tags, social_hashtagsisMain: false
  • Meta Tags (seoData.tags)
    • <meta name="description"> from meta_description
    • <meta name="title"> from seo_title
  • Open Graph (seoData.tags)
    • og:title, og:description, og:image, og:type=article, og:url
  • Twitter Card (seoData.tags)
    • twitter:title, twitter:description, twitter:image, twitter:card
  • Canonical URL (seoData.tags)
    • <link rel="canonical">
  • Categories & Tags
    • Autolookup/create and post as categoryIds and tagIds

Not Posted (Limitations)

  • JSONLD structured data
    • Reason: Requires Wix site frontend (@wix/site-seo)
  • URL slug customization
    • Wix autogenerates from title
  • Reading time / optimization score
    • Internal metadata, not part of Wix post

Conversion

  • Markdown → Ricos JSON via official API (with custom parser fallback)
  • Supports headings, paragraphs, lists, images, basic formatting

Example (structure excerpt)

{
  "draftPost": {
    "title": "SEO optimized title",
    "memberId": "author-member-id",
    "richContent": { /* Ricos JSON */ },
    "excerpt": "First 200 chars...",
    "categoryIds": ["uuid1"],
    "tagIds": ["uuid1","uuid2"],
    "seoData": {
      "settings": { "keywords": [ { "term": "main", "isMain": true } ] },
      "tags": [ { "type": "meta", "props": { "name": "description", "content": "..." } } ]
    }
  },
  "publish": true
}