Setyenv · Docs
  • English
  • Spanish
  • Chinese
  • Japanese
  • Arabic
  • German
  • French
  • Hindi
  • Indonesian
  • Italian
  • Dutch
  • Portuguese
  • Russian
  • Turkish

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

NodeKeyTierDescription
Post publishedcontent.post_publishedfreeFires when a post transitions to published status.
Post updatedcontent.post_updatedfreeFires when an existing post is modified.
Post meta updatedcontent.post_meta_updatedfreeFires when a specific post meta key is written. Filterable per metaKey in trigger config.
Post status changedcontent.status_changedfreeFires on any status transition (draft→pending→publish, etc.)
Post deletedcontent.post_deletedfreeFires before permanent deletion (not trash).
Page publishedcontent.page_publishedfreeSame as Post published but scoped to the page post type.

Actions

NodeKeyTierDescription
Create postcontent.create_postfreeCreate a new post with title, content, excerpt, status, author, and categories.
Update postcontent.update_postfreeUpdate title/content/fields of an existing post.
Get postcontent.get_postfreeLoad a normalized post payload by ID. Exposes all standard post fields as output pins.
Change post statuscontent.change_statusfreeMove content to draft/published/pending.
Change post typecontent.change_post_typeproMove from one post_type to another.
Query postscontent.query_postsproWP_Query with filters (post_type, status, category, tag, author, date range). Bounded at 100 results.
Set featured imagecontent.set_featured_imageproAttach an existing media item as the featured image.
Create revision snapshotcontent.create_revisionproCapture a revision before automated edits.
Duplicate postcontent.duplicate_postproClone a post or page as a new draft.
Delete postcontent.delete_postproMove to trash (soft delete).
Update SEO metacontent.update_seo_metaproWrite SEO title/description into post meta fields.