Content nodes
Operations on WordPress posts, pages, and custom post types. Triggers fire on post lifecycle events; actions create, update, delete, and query content.
Triggers
| Node | Key | Tier | Description |
|---|
| Post published | content.post_published | free | Fires when a post transitions to published status. |
| Post updated | content.post_updated | free | Fires when an existing post is modified. |
| Post meta updated | content.post_meta_updated | free | Fires when a specific post meta key is written. Filterable per metaKey in trigger config. |
| Post status changed | content.status_changed | free | Fires on any status transition (draft→pending→publish, etc.) |
| Post deleted | content.post_deleted | free | Fires before permanent deletion (not trash). |
| Page published | content.page_published | free | Same as Post published but scoped to the page post type. |
Actions
| Node | Key | Tier | Description |
|---|
| Create post | content.create_post | free | Create a new post with title, content, excerpt, status, author, and categories. |
| Update post | content.update_post | free | Update title/content/fields of an existing post. |
| Get post | content.get_post | free | Load a normalized post payload by ID. Exposes all standard post fields as output pins. |
| Change post status | content.change_status | free | Move content to draft/published/pending. |
| Change post type | content.change_post_type | pro | Move from one post_type to another. |
| Query posts | content.query_posts | pro | WP_Query with filters (post_type, status, category, tag, author, date range). Bounded at 100 results. |
| Set featured image | content.set_featured_image | pro | Attach an existing media item as the featured image. |
| Create revision snapshot | content.create_revision | pro | Capture a revision before automated edits. |
| Duplicate post | content.duplicate_post | pro | Clone a post or page as a new draft. |
| Delete post | content.delete_post | pro | Move to trash (soft delete). |
| Update SEO meta | content.update_seo_meta | pro | Write SEO title/description into post meta fields. |