The single biggest friction point in content ops isn't writing — it's the 40 minutes between draft approval and content going live. Copy from Notion, paste into WordPress, fix the formatting, upload the hero image, write the meta description, add the schema, set the categories, schedule the publish. By the time it's live, you've lost 30% of your week.
Stackwise Rank's native publishers eliminate that loop entirely. Generate content in the platform, click Publish, and it's live in your CMS with full SEO metadata, schema markup, and Yoast/Rank Math fields populated automatically.
WordPress: Application Passwords setup
- 01In WordPress admin, go to Users → Profile → Application Passwords
- 02Enter 'Stackwise Rank' as the app name, click Add New Application Password
- 03Copy the generated password (you'll only see it once)
- 04In Stackwise Rank, go to Site → Connections → CMS → WordPress
- 05Paste your site URL, username, and the application password — done
Why Application Passwords beat OAuth
Application Passwords work on every WordPress install, even self-hosted ones behind firewalls. No callback URL drama, no OAuth scopes, no expired tokens. Just paste and publish.
What gets published
| Field | Source | Auto-populated? |
|---|---|---|
| Title | Generated content | Yes |
| Body (HTML) | Generated content | Yes |
| Featured image | Generated or selected | Yes |
| Meta description | Generated content | Yes |
| Yoast SEO title | Generated content | Yes |
| Yoast meta description | Generated content | Yes |
| Rank Math focus keyword | Plan brief | Yes |
| JSON-LD schema | Auto-generated | Yes |
| Categories / Tags | Plan brief | Yes |
| Status | draft / publish | Configurable |
Webflow: CMS v2 API
Webflow uses a different model — you publish to a CMS Collection rather than a single post type. Stackwise Rank maps generated content to your collection's fields automatically.
- 01In Webflow, open your site → Integrations → API Access → Generate API token
- 02Pick the collection you want to publish to (usually 'Blog Posts' or 'Articles')
- 03In Stackwise Rank, paste the API token + collection ID
- 04Map your collection fields to Stackwise Rank fields — done in 30 seconds
End-to-end in 47 seconds
From 'Generate Content' click to live on Webflow: 47 seconds average. The slowest step is Webflow's publish pipeline, not anything we control.
Webhook publisher for everything else
If your CMS isn't WordPress or Webflow — Ghost, Sanity, Contentful, custom — use the webhook publisher. We send a signed POST with the full content payload. You handle the rest.
{
"title": "AEO is the new SEO",
"slug": "aeo-is-the-new-seo",
"body_html": "<p>...</p>",
"meta_description": "Google's AI Overviews now answer...",
"schema_jsonld": { "@context": "...", "@type": "Article" },
"featured_image_url": "https://cdn.rankai.app/...",
"published_at": "2026-06-12T08:00:00Z"
}