8
n8n 中文网amn8n.com

使用 OpenAI 和 WordPress 自动化博客内容生成与发布

中级

这是一个Content Creation, Multimodal AI领域的自动化工作流,包含 6 个节点。主要使用 Set, OpenAi, WordPress, ManualTrigger 等节点。 使用 OpenAI 和 WordPress 自动化博客内容生成与发布

前置要求
  • OpenAI API Key
工作流预览
可视化展示节点连接关系,支持缩放和平移

无法加载工作流预览

导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "nodes": [
    {
      "name": "手动触发器",
      "type": "n8n-nodes-base.manualTrigger",
      "notes": {
        "text": "### 1. Start Workflow\n\nThis `Manual Trigger` node is used for easy testing. \n\n**To trigger the workflow manually:** Click the 'Execute Workflow' button in the top right.\n\n**For production:** Consider replacing this with a `Cron` node (for scheduled posts) or a `Webhook` node (to trigger from another app, like a Google Sheet entry or a custom form).\n",
        "position": "right"
      },
      "position": [
        240,
        300
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "name": "设置博客主题",
      "type": "n8n-nodes-base.set",
      "notes": {
        "text": "### 2. Define Blog Topic\n\nThis `Set` node defines the core topic for your blog post.\n\n**How to use:**\n* **For testing:** Directly edit the 'Value' field with your desired topic.\n* **For production:** You can replace this fixed value with data from a previous node (e.g., a Google Sheet, an Airtable record, or a Webhook input) using an expression like `{{ $json.yourInputFieldName }}`.",
        "position": "right"
      },
      "position": [
        460,
        300
      ],
      "parameters": {
        "values": [
          {
            "name": "blogTopic",
            "value": "The Future of Remote Work: Trends and Challenges"
          }
        ],
        "options": {}
      },
      "typeVersion": 2
    },
    {
      "name": "生成标题",
      "type": "n8n-nodes-base.openAi",
      "notes": {
        "text": "### 3. Generate Blog Post Title (AI)\n\nThis `OpenAI` node calls the OpenAI API to generate a compelling title based on the `blogTopic`.\n\n**Setup:**\n1.  **OpenAI Credential:** Click on 'Credentials' (above the 'Model' dropdown) and select 'New Credential'. Provide your OpenAI API Key (starts with `sk-`). Save it.\n2.  **Model:** You can change `gpt-3.5-turbo` to `gpt-4o` for potentially better results (but higher cost), or if you prefer a different model.\n\n**Output:** The generated title will be available in `{{ $node[\"Generate Title\"].json.choices[0].message.content }}`.",
        "position": "right"
      },
      "position": [
        700,
        300
      ],
      "parameters": {
        "model": "gpt-3.5-turbo",
        "options": {},
        "messages": [
          {
            "role": "system",
            "content": "You are a professional blogger. Your task is to generate concise and engaging blog post titles."
          },
          {
            "role": "user",
            "content": "Generate a blog post title for the topic: {{ $json.blogTopic }}"
          }
        ]
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "resolve": false
        }
      },
      "typeVersion": 1
    },
    {
      "name": "生成正文",
      "type": "n8n-nodes-base.openAi",
      "notes": {
        "text": "### 4. Generate Blog Post Body (AI)\n\nThis second `OpenAI` node generates the full content of your blog post.\n\n**Setup:**\n1.  **Credentials:** Select the same OpenAI credential you created for the 'Generate Title' node.\n2.  **Model:** Ensure this matches your preference (e.g., `gpt-3.5-turbo` or `gpt-4o`).\n3.  **Prompts:** The 'User' prompt feeds in both the original topic and the title generated in the previous step, providing context for the AI.\n\n**Output:** The full blog post body will be in `{{ $node[\"Generate Body\"].json.choices[0].message.content }}`.",
        "position": "right"
      },
      "position": [
        940,
        300
      ],
      "parameters": {
        "model": "gpt-3.5-turbo",
        "options": {},
        "messages": [
          {
            "role": "system",
            "content": "You are a professional blogger. Write a detailed, well-structured blog post with an introduction, several body paragraphs, and a clear conclusion. Use Markdown for headings, bold text, and lists. Ensure the content is engaging and informative for a general audience."
          },
          {
            "role": "user",
            "content": "Write a blog post about: {{ $json.blogTopic }}\n\nUse the title: {{ $node[\"Generate Title\"].json.choices[0].message.content }}"
          }
        ]
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "resolve": false
        }
      },
      "typeVersion": 1
    },
    {
      "name": "准备内容",
      "type": "n8n-nodes-base.set",
      "notes": {
        "text": "### 5. Prepare Content for Publishing\n\nThis `Set` node consolidates and renames the generated title and body into easily accessible fields (`blogPostTitle` and `blogPostBody`). This makes it cleaner to reference them in the final WordPress publishing step.\n\n**No specific setup needed here**, it just maps the data from the previous AI nodes.",
        "position": "right"
      },
      "position": [
        1180,
        300
      ],
      "parameters": {
        "values": [
          {
            "name": "blogPostTitle",
            "value": "={{ $node[\"Generate Title\"].json.choices[0].message.content }}"
          },
          {
            "name": "blogPostBody",
            "value": "={{ $node[\"Generate Body\"].json.choices[0].message.content }}"
          }
        ],
        "options": {}
      },
      "typeVersion": 2
    },
    {
      "name": "发布到WordPress",
      "type": "n8n-nodes-base.wordPress",
      "notes": {
        "text": "### 6. Publish to WordPress\n\nThis `WordPress` node creates a new post on your WordPress site using the AI-generated content.\n\n**Setup:**\n1.  **WordPress Credential:** Click 'Credentials' and select 'New Credential'.\n    * **Authentication:** Choose `User & Password`.\n    * **WordPress URL:** Enter your full WordPress site URL (e.g., `https://yourdomain.com`).\n    * **Username:** Your WordPress admin username.\n    * **Password:** Your WordPress admin password.\n2.  **Title & Content:** These fields are pre-filled with expressions to pull data from the 'Prepare Content' node.\n3.  **Status:** Set to `publish` to make the post live immediately. Change to `draft` if you want to review it manually before publishing.\n\n**After successful execution, visit your WordPress site to see the new post!**",
        "position": "right"
      },
      "position": [
        1420,
        300
      ],
      "parameters": {
        "title": "={{ $json.blogPostTitle }}",
        "status": "publish",
        "content": "={{ $json.blogPostBody }}",
        "options": {},
        "resource": "post",
        "operation": "create"
      },
      "credentials": {
        "wordPressApi": {
          "id": "YOUR_WORDPRESS_CREDENTIAL_ID",
          "resolve": false
        }
      },
      "typeVersion": 2
    }
  ],
  "pinData": {},
  "version": 1,
  "connections": {
    "Generate Body": {
      "main": [
        [
          {
            "node": "Prepare Content",
            "type": "main"
          }
        ]
      ]
    },
    "Generate Title": {
      "main": [
        [
          {
            "node": "Generate Body",
            "type": "main"
          }
        ]
      ]
    },
    "Manual Trigger": {
      "main": [
        [
          {
            "node": "Set Blog Topic",
            "type": "main"
          }
        ]
      ]
    },
    "Set Blog Topic": {
      "main": [
        [
          {
            "node": "Generate Title",
            "type": "main"
          }
        ]
      ]
    },
    "Prepare Content": {
      "main": [
        [
          {
            "node": "Publish to WordPress",
            "type": "main"
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。

这个工作流适合什么场景?

中级 - 内容创作, 多模态 AI

需要付费吗?

本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。

工作流信息
难度等级
中级
节点数量6
分类2
节点类型4
难度说明

适合有一定经验的用户,包含 6-15 个节点的中等复杂度工作流

作者
Piotr Sobolewski

Piotr Sobolewski

@piotrsobolewski

AI PhD with 7 years experience as a game dev CEO, currently teaching, helping others and building something new.

外部链接
在 n8n.io 查看

分享此工作流