Automatisches Archivieren alter WordPress-Artikel in Entwurfsstatus

Fortgeschritten

Dies ist ein File Management, Multimodal AI-Bereich Automatisierungsworkflow mit 7 Nodes. Hauptsächlich werden If, EmailSend, Wordpress, ScheduleTrigger und andere Nodes verwendet. Automatisches Archivieren alter WordPress-Beiträge als Entwurf

Voraussetzungen
  • Keine besonderen Voraussetzungen, sofort nach Import nutzbar
Workflow-Vorschau
Visualisierung der Node-Verbindungen, mit Zoom und Pan
Workflow exportieren
Kopieren Sie die folgende JSON-Konfiguration und importieren Sie sie in n8n
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "48e4e6d7-f1c4-4539-a1c7-9d5fd4aed1eb",
      "name": "Quartalsauslöser",
      "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": "Alte Beiträge finden",
      "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": "Prüfen, ob Beiträge gefunden wurden",
      "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": "Beitrag archivieren",
      "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": "Benachrichtigung senden",
      "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": "Keine Beiträge protokollieren",
      "type": "n8n-nodes-base.noOp",
      "position": [
        448,
        208
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "e9a2e951-43e5-4e98-83d4-3145dc6dbf47",
      "name": "Kurznotiz",
      "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
          }
        ]
      ]
    }
  }
}
Häufig gestellte Fragen

Wie verwende ich diesen Workflow?

Kopieren Sie den obigen JSON-Code, erstellen Sie einen neuen Workflow in Ihrer n8n-Instanz und wählen Sie "Aus JSON importieren". Fügen Sie die Konfiguration ein und passen Sie die Anmeldedaten nach Bedarf an.

Für welche Szenarien ist dieser Workflow geeignet?

Fortgeschritten - Dateiverwaltung, Multimodales KI

Ist es kostenpflichtig?

Dieser Workflow ist völlig kostenlos. Beachten Sie jedoch, dass Drittanbieterdienste (wie OpenAI API), die im Workflow verwendet werden, möglicherweise kostenpflichtig sind.

Verwandte Workflows

KI-gesteuerte wöchentliche Newsletter aus WordPress mit Gemini generieren
AI-gesteuerte wöchentliche Newsletter mit Gemini aus WordPress generieren
If
Code
Email Send
+
If
Code
Email Send
8 NodesDavid Olusola
Soziale Medien
Automatische Veröffentlichung von WordPress-Artikeln auf Social Media mit Gemini AI und Blotato
Automatisches Veröffentlichen von WordPress-Artikeln auf Social Media mit Gemini AI und Blotato
If
Code
Split Out
+
If
Code
Split Out
11 NodesDavid Olusola
Soziale Medien
Automatisierte Erstellung von wöchentlichen Tutorials für beliebte GitHub-Repositories mit Gemini AI und Veröffentlichung auf WordPress
Automatisiere die wöchentliche Generierung von Tutorials aus beliebten GitHub-Repositories und Veröffentlichung auf WordPress mit Gemini AI
Code
Split Out
Email Send
+
Code
Split Out
Email Send
9 NodesDavid Olusola
Content-Erstellung
Automatische Erzeugung von Technologie-News-Blogartikeln mit NewsAPI und Google Gemini und Veröffentlichung auf WordPress
Automatisierte Erstellung von Tech-News-Blog-Artikeln mit NewsAPI und Google Gemini und Veröffentlichung auf WordPress
Code
Wordpress
Http Request
+
Code
Wordpress
Http Request
9 NodesDavid Olusola
Content-Erstellung
Automated Google Drive to FTP File Transfer with JSON Logging and Reporting
Automatisierte Google-zu-FTP-Dateiübertragung mit JSON-Protokollierung und Berichterstattung
If
Ftp
Code
+
If
Ftp
Code
15 NodesDariusz Koryto
Dateiverwaltung
Bitcoin und Ethereum Krypto-Kurssturz-Alarme (Telegram, Slack und SMS)
Bitcoin- und Ethereum-Krypto-Crash-Alerts werden über Telegram, Slack und SMS gesendet
If
Code
Slack
+
If
Code
Slack
8 NodesDavid Olusola
Krypto-Handel
Workflow-Informationen
Schwierigkeitsgrad
Fortgeschritten
Anzahl der Nodes7
Kategorie2
Node-Typen6
Schwierigkeitsbeschreibung

Für erfahrene Benutzer, mittelkomplexe Workflows mit 6-15 Nodes

Autor
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

Externe Links
Auf n8n.io ansehen

Diesen Workflow teilen

Kategorien

Kategorien: 34