WordPress 블로그 게시물 자동 번역
중급
이것은Content Creation, Multimodal AI분야의자동화 워크플로우로, 9개의 노드를 포함합니다.주로 Wordpress, GoogleDocs, HttpRequest, ManualTrigger 등의 노드를 사용하며. AI Translate Pro를 사용하여 WordPress 블로그 글을 모든 언어로 자동 번역 및 Google Docs에 저장
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "60c025075753afcab9f803964b4caaca9402f435deb4efafbb8e3b93b54d8752",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "1771594b-9a19-4143-8f43-59c9149f1a46",
"name": "클릭 시 ‘Execute workflow’",
"type": "n8n-nodes-base.manualTrigger",
"position": [
-100,
0
],
"parameters": {},
"typeVersion": 1
},
{
"id": "902da551-8eca-48b4-b470-30e56c97df9c",
"name": "Wordpress",
"type": "n8n-nodes-base.wordpress",
"position": [
180,
0
],
"parameters": {
"postId": "2151",
"options": {},
"operation": "get"
},
"credentials": {
"wordpressApi": {
"id": "HucvXmJY2eFp01hl",
"name": "Wordpress account"
}
},
"typeVersion": 1
},
{
"id": "02944dc1-3cc5-4ece-b394-c56756bf1c62",
"name": "HTTP 요청",
"type": "n8n-nodes-base.httpRequest",
"position": [
440,
0
],
"parameters": {
"url": "https://ai-translate-pro.p.rapidapi.com/translate.php",
"method": "POST",
"options": {},
"sendBody": true,
"contentType": "multipart-form-data",
"sendHeaders": true,
"bodyParameters": {
"parameters": [
{
"name": "text",
"value": "={{ $json.content.rendered }}"
},
{
"name": "language",
"value": "Hindi"
}
]
},
"headerParameters": {
"parameters": [
{
"name": "x-rapidapi-host",
"value": "ai-translate-pro.p.rapidapi.com"
},
{
"name": "x-rapidapi-key",
"value": "your key"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "530a7eec-b5b1-4275-b0c8-8c947a25f61c",
"name": "Google 문서",
"type": "n8n-nodes-base.googleDocs",
"position": [
760,
0
],
"parameters": {
"actionsUi": {
"actionFields": [
{
"text": "={{ $json.data }}",
"action": "insert"
}
]
},
"operation": "update",
"documentURL": "",
"authentication": "serviceAccount"
},
"credentials": {
"googleApi": {
"id": "Rt0RWApx8PL9t0RF",
"name": "Google Docs account"
}
},
"typeVersion": 2
},
{
"id": "be6ca2fd-e157-4aea-9374-17089d4ff440",
"name": "메모",
"type": "n8n-nodes-base.stickyNote",
"position": [
-880,
-320
],
"parameters": {
"width": 600,
"height": 820,
"content": "# 🌐 Changing Your WordPress Blog Into Any Language\n\nThis n8n workflow automates the translation of WordPress blog posts into any language using an AI translation API, then inserts the translated content into a Google Doc.\n\n---\n\n## ⚙️ Workflow Overview\n\n**Steps:**\n\n1. Manually trigger the workflow.\n2. Fetch a blog post from WordPress.\n3. Translate the post content using an AI-powered translation API.\n4. Insert the translated text into a specified Google Docs document.\n\n---\n\n## 💡 Use Cases\n\n- 🌍 **Multilingual Blogging**: Translate posts into Hindi, Spanish, French, etc., and publish for global readers.\n- 🧾 **Content Localization**: Quickly prepare content for regional or international markets.\n- 🧪 **AI Translation Testing**: Run comparisons between human and AI translations.\n- 🧠 **Knowledge Base Expansion**: Store translated content for reuse in help centers or documentation.\n\n---\n## 📦 Notes\n\n- You can modify the post ID to work dynamically.\n- You can switch the target language via input or additional nodes.\n- For better formatting, consider converting HTML to markdown before translation (optional).\n\n\n"
},
"typeVersion": 1
},
{
"id": "e61f82d4-0486-4d91-8560-dce89116441d",
"name": "메모1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-140,
-220
],
"parameters": {
"height": 380,
"content": "\n### 1. ✅ Manual Trigger\nStarts the workflow manually when the user clicks \"Execute Workflow\" inside n8n."
},
"typeVersion": 1
},
{
"id": "a17df79e-826b-4a91-9cda-1d7a15b5f888",
"name": "메모2",
"type": "n8n-nodes-base.stickyNote",
"position": [
120,
-220
],
"parameters": {
"height": 380,
"content": "### 2. 🌐 WordPress\nFetches the blog post with ID `2151` from a connected WordPress site using the REST API. It retrieves the content in raw HTML format.\n"
},
"typeVersion": 1
},
{
"id": "8e4a54aa-942b-47a2-8116-70ee15e61bcb",
"name": "메모3",
"type": "n8n-nodes-base.stickyNote",
"position": [
380,
-220
],
"parameters": {
"height": 380,
"content": "### 3. 🌍 HTTP Request (AI Translation)\nSends the WordPress blog content to the `ai-translate-pro` API via RapidAPI using `multipart/form-data`. The `text` field is filled with the blog post content, and the `language` is set to `Hindi`. The response contains the translated text.\n"
},
"typeVersion": 1
},
{
"id": "18a49e1d-cd8f-4277-b6bb-aff3651b75f0",
"name": "메모4",
"type": "n8n-nodes-base.stickyNote",
"position": [
640,
-220
],
"parameters": {
"height": 380,
"content": "### 4. 📝 Google Docs\nTakes the translated text from the API response and inserts it into a specified Google Docs document using the Google Docs API with service account credentials.\n"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"902da551-8eca-48b4-b470-30e56c97df9c": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[
{
"node": "Google Docs",
"type": "main",
"index": 0
}
]
]
},
"When clicking ‘Execute workflow’": {
"main": [
[
{
"node": "902da551-8eca-48b4-b470-30e56c97df9c",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 콘텐츠 제작, 멀티모달 AI
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
TikTok 텍스트 전사
RapidAPI 및 Google Sheets를 사용한 TikTok 비디오 트랜스크립션 자동화
If
Code
Wait
+
If
Code
Wait
21 노드Evoort Solutions
콘텐츠 제작
이미지에서 이미지로 GPT, Google Sheets, Drive를 사용하여 이미지 생성 및 업로드
이미지에서 이미지로 GPT, Google Sheets, Drive를 사용하여 이미지를 생성 및 업로드
If
Code
Wait
+
If
Code
Wait
23 노드Evoort Solutions
콘텐츠 제작
Job Search Global API 및 Google Sheets를 사용한 구직 활동 자동화
Job Search Global API 및 Google Sheets를 사용한 채용 공고 검색 자동화
If
Set
Code
+
If
Set
Code
15 노드Evoort Solutions
콘텐츠 제작
무물감 TikTok 비디오를 구글 드라이브에 다운로드하고 자동으로 테이블에 기록
무물감 TikTok 비디오를 Google 드라이브에 다운로드하고 자동으로 테이블에 로그 기록
If
Wait
Form Trigger
+
If
Wait
Form Trigger
19 노드Evoort Solutions
콘텐츠 제작
가상 고객 매력 생성
RapidAPI AI를 사용하여 구글 스프레드시트에서 잠재 고객 매그넷 크리에이티브 생성
If
Wait
Http Request
+
If
Wait
Http Request
15 노드Evoort Solutions
콘텐츠 제작
Google Sheets와 이메일 알림을 사용하여 제목 명확성을 최적화
Google Sheets와 이메일 알림을 사용하여 제목 명확성을 최적화하기
If
Code
Email Send
+
If
Code
Email Send
14 노드Evoort Solutions
콘텐츠 제작