Skip to main content

Node Inputs

Required Fields

Title:
The title of the WordPress post.
Example: "10 Best SEO Practices for 2024"
Content:
The HTML content of the post.
Example: "<p>Here are the best SEO practices...</p>"

Optional Fields

Status:
The publication status of the post.
Available options:
  • publish: Publish immediately
  • draft: Save as draft
  • pending: Pending review
  • private: Private post
    Default: draft
Excerpt:
A short summary of the post.
Example: "Learn the latest SEO techniques to boost your rankings."
Categories:
Array of category IDs to assign to the post.
Example: [1, 5, 12]
Tags:
Array of tag IDs to assign to the post.
Example: [23, 45, 67]
Featured Media:
The ID of the featured image for the post.
Example: 789
Author:
The author ID for the post.
Example: 2
Date:
The publication date for the post (ISO 8601 format).
Example: "2024-10-25T10:00:00"
Meta Description:
SEO meta description (if SEO plugin is installed).
Example: "Discover the top 10 SEO practices for 2024"

Node Output

Post Details:
Information about the created post including ID, URL, and publication status.
Example Output:
{
  "id": 12345,
  "status": "publish",
  "title": "10 Best SEO Practices for 2024",
  "url": "https://example.com/10-best-seo-practices-2024/",
  "date": "2024-10-19T10:30:00",
  "modified": "2024-10-19T10:30:00",
  "author": 2,
  "categories": [1, 5, 12],
  "tags": [23, 45, 67],
  "featured_media": 789
}

Node Functionality

The WordPress Post Create node:
  • Creates and publishes posts on WordPress sites via REST API.
  • Supports all standard post properties and custom fields.
  • Enables automated content publishing workflows.
  • Works with JWT or bearer token authentication.
  • Allows scheduling posts for future publication.
  • Integrates with WordPress SEO plugins for meta data.
I