WordPress Post Create
Create and publish WordPress posts
What does this node do?
Creates new posts or pages in WordPress. Perfect for automated content publishing.
Configuration
title string required Post title.
content string required Post content (HTML supported).
status string default: draft draft- Save as draftpublish- Publish immediatelypending- Pending review
type string default: post post- Blog postpage- Static page
categories array Category IDs.
tags array Tag IDs.
featured_media number Featured image ID.
Output
{
"id": 456,
"link": "https://yoursite.com/new-post",
"status": "publish",
"title": "New Post Title"
}
Example
Content automation:
graph LR
A[Generate Content] --> B[Create Post]
B --> C[Log to Sheets]