Embed & Integration Guide

Three ways to connect your 13 websites to this blog — pick the one that fits each site.

Option 1 — Direct Link

Simplest. Just link to this blog from your site.

Add a “Blog” link in your navigation pointing to this blog's URL. Zero setup required.

<a href="https://your-blog-url.com">Visit our Blog</a>

Option 2 — Embeddable Widget

Drop a script tag into any page to show recent posts.

Works on any website — HTML, WordPress, Webflow, Wix, Squarespace, React, etc. Paste this snippet where you want the feed to appear:

<!-- Vertner Law Blog Widget -->
<div id="doc-team-blog"></div>
<script
  src="https://your-blog-url.com/embed.js"
  data-blog-url="https://your-blog-url.com"
  data-limit="5"
  data-theme="light"
  data-excerpt="true"
></script>
data-limit

Number of posts to show (default: 5)

data-theme

light or dark

data-excerpt

true or false to show excerpts

data-container

Custom container div ID (default: doc-team-blog)

Option 3 — JSON API

Fetch posts and render them in your own style.

For sites with a custom front-end. Fetch from the API and display posts however you like.

// GET https://your-blog-url.com/api/posts?limit=5
// Returns an array of published posts:
[
  {
    "id": "...",
    "title": "Post Title",
    "slug": "post-title",
    "excerpt": "Short description",
    "author": "Vertner Law",
    "tags": "tips, design",
    "createdAt": "2024-01-01T00:00:00.000Z",
    "coverImage": "https://..."
  }
]

CORS is enabled — you can call this API from any domain.

Option 4 — RSS Feed

For WordPress sites or RSS-aware platforms.

Use the RSS feed to auto-import posts into WordPress or any RSS reader/aggregator.

https://your-blog-url.com/feed.xml