Go to Studio

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 draft
  • publish - Publish immediately
  • pending - Pending review
type string default: post
  • post - Blog post
  • page - 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]