旧WordPress記事を自動のに下書きステータスにアーカイブ

中級

これはFile Management, Multimodal AI分野の自動化ワークフローで、7個のノードを含みます。主にIf, EmailSend, Wordpress, ScheduleTriggerなどのノードを使用。 旧WordPress記事を自動のに下書きステータスにアーカイブ

前提条件
  • 特別な前提条件なし、インポートしてすぐに使用可能
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "48e4e6d7-f1c4-4539-a1c7-9d5fd4aed1eb",
      "name": "四半期トリガー",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        -304,
        96
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 0 1 */3 *"
            }
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "acc3caae-a2f2-47ee-90fe-d9d6cc908cde",
      "name": "古い投稿を検索",
      "type": "n8n-nodes-base.wordpress",
      "position": [
        -48,
        96
      ],
      "parameters": {
        "options": {
          "order": "asc",
          "before": "{{ $now.minus({ months: 12 }).toISO() }}",
          "status": "publish"
        },
        "operation": "getAll"
      },
      "typeVersion": 1
    },
    {
      "id": "4d37e32a-8a0c-4881-9898-871252d5ac45",
      "name": "投稿有無を確認",
      "type": "n8n-nodes-base.if",
      "position": [
        208,
        96
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 1,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "6516d0df-79fc-4895-b422-1aaf6e348fc8",
              "operator": {
                "type": "number",
                "operation": "gt"
              },
              "leftValue": "={{ $json.length }}",
              "rightValue": 0
            }
          ]
        }
      },
      "typeVersion": 2
    },
    {
      "id": "9d23ec40-bb26-4aa4-b960-fde58c5247f6",
      "name": "投稿をアーカイブ",
      "type": "n8n-nodes-base.wordpress",
      "position": [
        464,
        32
      ],
      "parameters": {
        "postId": "={{ $json.id }}",
        "operation": "update",
        "updateFields": {
          "tags": "archived,old-content",
          "status": "draft"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "4d4a6928-521e-4cda-b7ee-66641e34838f",
      "name": "通知を送信",
      "type": "n8n-nodes-base.emailSend",
      "position": [
        720,
        32
      ],
      "webhookId": "3bddfc19-dba1-4010-8c05-a4ff5f7f5f67",
      "parameters": {
        "options": {},
        "subject": "Quarterly Archive Complete"
      },
      "credentials": {
        "smtp": {
          "id": "0xVva6dyyi5SuxBe",
          "name": "SMTP account"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "6b526fe7-645a-4cb5-bb5b-4e0c31d84142",
      "name": "投稿なしを記録",
      "type": "n8n-nodes-base.noOp",
      "position": [
        448,
        208
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "e9a2e951-43e5-4e98-83d4-3145dc6dbf47",
      "name": "付箋メモ",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -576,
        -80
      ],
      "parameters": {
        "width": 380,
        "height": 780,
        "content": "## Workflow Overview\n\n**Author: David Olusola**\nThis workflow automatically archives old WordPress posts every quarter.\n\n**Schedule:** Runs on the 1st day of every 3rd month (quarterly)\n\n**Steps:**\n1. Trigger executes quarterly\n2. Finds old posts from WordPress\n3. Archives the identified posts\n\n---\n\n## Need n8n Coaching?\n\n🎯 **Get Professional Help:**\n- Workflow optimization\n- Advanced automation strategies\n- Custom node development\n- Error handling & debugging\n- Performance improvements\n\n📧 [Contact for n8n coaching and consultation services!](mailto:david@daexai.com)\n\n---\n\n💡 **Tips:**\n- Add filters to \"Find Old Posts\" to specify criteria\n- Consider adding error handling nodes\n- Test with a smaller batch first"
      },
      "typeVersion": 1
    }
  ],
  "pinData": {},
  "connections": {
    "9d23ec40-bb26-4aa4-b960-fde58c5247f6": {
      "main": [
        [
          {
            "node": "4d4a6928-521e-4cda-b7ee-66641e34838f",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "acc3caae-a2f2-47ee-90fe-d9d6cc908cde": {
      "main": [
        [
          {
            "node": "4d37e32a-8a0c-4881-9898-871252d5ac45",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "48e4e6d7-f1c4-4539-a1c7-9d5fd4aed1eb": {
      "main": [
        [
          {
            "node": "acc3caae-a2f2-47ee-90fe-d9d6cc908cde",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "4d37e32a-8a0c-4881-9898-871252d5ac45": {
      "main": [
        [
          {
            "node": "9d23ec40-bb26-4aa4-b960-fde58c5247f6",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "6b526fe7-645a-4cb5-bb5b-4e0c31d84142",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

中級 - ファイル管理, マルチモーダルAI

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

関連ワークフロー

Geminiを使ってWordPressからAI駆動型の週次メールニュースを生成
Geminiを使ってWordPressからAI駆動の週次メールニュースレターへ生成する
If
Code
Email Send
+
If
Code
Email Send
8 ノードDavid Olusola
ソーシャルメディア
Gemini AI と Blotato を使って WordPress 記事を自動のにソーシャルメディアに投稿する
Gemini AI と Blotato を使って WordPress 記事を自動のにソーシャルメディアに投稿する
If
Code
Split Out
+
If
Code
Split Out
11 ノードDavid Olusola
ソーシャルメディア
Gemini AIでGitHubの人気リポジトリから週次のチュートリアルを自動生成し、WordPressに投稿
Gemini AI を使って GitHub 人気リポジトリから週次チュートリアルを自動生成し WordPress に投稿
Code
Split Out
Email Send
+
Code
Split Out
Email Send
9 ノードDavid Olusola
コンテンツ作成
NewsAPIとGoogle Geminiを使用してテクノロジーニュースブログ記事を自動生成し、WordPressに公開
NewsAPIとGoogle Geminiを使用して自動のにテクノロジーニュースブログ記事を生成し、WordPressに投稿
Code
Wordpress
Http Request
+
Code
Wordpress
Http Request
9 ノードDavid Olusola
コンテンツ作成
Google DriveからFTPへのファイル転送とJSONログ記録およびレポートの自動化
Google DriveからFTPへのファイル転送を自動化し、JSONログ出力とレポートを生成
If
Ftp
Code
+
If
Ftp
Code
15 ノードDariusz Koryto
ファイル管理
ビットコインとイーサリアムの下落アラート(Telegram、Slack、SMS)
Telegram、Slack、SMS 経由でビットコインとイーサリアムの下落アラートを送信
If
Code
Slack
+
If
Code
Slack
8 ノードDavid Olusola
仮想通貨取引
ワークフロー情報
難易度
中級
ノード数7
カテゴリー2
ノードタイプ6
難易度説明

経験者向け、6-15ノードの中程度の複雑さのワークフロー

作成者
David Olusola

David Olusola

@dae221

I help ambitious businesses eliminate operational bottlenecks and scale faster with AI automation. My clients typically see 40-60% efficiency gains within 90 days. Currently accepting 3 new projects this quarter - david@daexai.com

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34