8
n8n 한국어amn8n.com

오래된 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에 게시
GitHub 인기 저장소를 자동으로 주간 튜토리얼로 생성하여 WordPress에 게시 (Gemini AI 사용)
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