Short answer: You can update post in WordPress by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the WordPress Update Post action to a workflow, map its 5 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Post ID postId | number | Required | Post ID |
Title title | string | Optional | Title |
Content content | html | Optional | Content |
Status status | options | Optional | Status. Options: Draft, Published, Private |
Excerpt excerpt | string | Optional | Excerpt |
{"postId": "{{trigger.postId}}","title": "{{trigger.title}}","content": "{{trigger.content}}","status": "{{trigger.status}}","excerpt": "{{trigger.excerpt}}"}
{"id": 42,"title": {"rendered": "Updated Title"},"modified": "2026-04-11T12:00:00"}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.