Block 1 - Sticky Note 586d2dc7
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
Quick overview Send an article brief via webhook and get back a fully written WordPress draft — complete with SEO metadata, a generated featured image, and a Slack notification to your team — using...
n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.set, n8n-nodes-base.if, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.merge, n8n-nodes-base.respondtowebhook
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Triple 8 Labs.
Original n8n.io sourceSend an article brief via webhook and get back a fully-written WordPress draft — complete with SEO metadata, a generated featured image, and a Slack notification to your team — using Anthropic Claude, Google Imagen, Rank Math SEO and Slack.
{ "prompt": "Write an article about building n8n automation pipelines" }
<?php
// Register Rank Math SEO meta fields for REST API access.
add_action( 'rest_api_init', function () {
$fields = [
'rank_math_focus_keyword',
'rank_math_title',
'rank_math_description',
];
foreach ( $fields as $field ) {
register_post_meta( 'post', $field, [
'show_in_rest' => true,
'single' => true,
'type' => 'string',
'sanitize_callback' => 'sanitize_text_field',
'auth_callback' => function () {
return current_user_can( 'edit_posts' );
},
] );
}
} );
For more information on how the system works and how to use it for content creation, see building an automated wordpress publishing pipeline with n8n and claude
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
Showing the first 24 of 33 workflow blocks. Download the JSON for the full node graph.
| Workflow | Create SEO-ready WordPress blog drafts with Claude, Imagen and Slack |
|---|---|
| Complexity | advanced |
| Nodes | 33 |
| Categories | Content Creation, Multimodal AI |
| Author | Triple 8 Labs |
| Published | 09 Jun 2026 |
Use the JSON export at /data/workflows/16216/16216.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Quick overview Send an article brief via webhook and get back a fully written WordPress draft — complete with SEO metadata, a generated featured image, and a Slack notification to your team — using...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation, Multimodal AI use case.