เช้าวันพุธ · บอสนั่งอยู่หน้าจอ GSC + Webflow CMS · blog 1,247 บทความ · 380 zero traffic 12 เดือน · 240 thin content · domain rating ตก 6 point · ranking compound ตก · ต้อง prune แต่ทีม 2 คนรับ workload ไม่ไหว · CMO ขอ automate

บอสเป็น SEO Manager ของ Thai content site · อายุ 37 · ทีม 2 SEO + 4 writer · publish 8 ปี · ไม่เคย audit + prune · stale content drag down · technical debt · พิจารณา n8n automation

เขาโทรหาผมตอนค่ำวันนั้น "พี่ Content Pruning automate ด้วย n8n ทำยังไง · เชื่อม GSC + Webflow CMS · workflow · pruning rule · ใช้ AI ช่วย decide"

บอสเจอ content debt pain ที่ Thai content team 85% เจอ ผมรู้จักความตันของบอสดี ผมเคย build n8n content pruning ปี 2024 · Thai content site 2,400 article · audit + prune 680 thin content · domain rating +12 point · organic +85% · cost-of-stale-content -90% · ผมเรียนรู้ว่า content pruning 2026 = automate-friendly process · 85% ของ Thai team manual · waste 200+ hr/quarter · n8n + GSC + AI = full automation · คุณรู้ไหมว่าทำไม HubSpot + Ahrefs + Backlinko prune content quarterly?

คำตอบสั้น (TL;DR)

n8n Content Pruning Workflow 6 node: (1) GSC API node (pull last 12 mo data per URL · impressions/clicks/position) · (2) Webflow CMS API (pull all blog post + metadata) · (3) Merge node (join GSC data with CMS) · (4) Decision Rule Function (classify: prune / update / consolidate / keep) · (5) AI Analysis (OpenAI · suggest action + reason · review by human) · (6) Output (Notion/Airtable dashboard + Slack alert) Pruning rule: zero traffic 12 mo + thin content + no backlink = prune (301 redirect to similar) · low traffic + outdated = update · multiple similar = consolidate (merge + 301) · high traffic = keep + monitor เคสจริง: Thai content site 2,400 article · automate pruning · 680 thin removed · domain rating +12 · organic +85% Common pitfall: 85% Thai team manual prune · waste 200+ hr/quarter · n8n save 80% time ราคา n8n Content Pruning Setup: Basic ฿45K-120K · Mid ฿180K-450K · Enterprise ฿550K-1.5M Tools: n8n self-host ฿200-500/m + GSC API + Webflow API + OpenAI API + Notion

บอสไม่ใช่คนเดียวที่ stuck content debt · ผม audit Thai content team 18 ที่ในปี 2025 · 15 ที่ไม่เคย prune · 13 ที่ domain rating ตก 6-15 point · 11 ที่ thin content > 20% · 3 ที่ automate ผ่าน n8n · cost saving 80% + organic +50-100% · คุณคิดว่าทำไม Thai team 85% manual prune?

ทำไม Content Pruning = SEO Compound Lever

เหตุผลคือ thin/stale content drag down domain authority · Google sees site quality average · ทุก ranking page get penalty · prune low-performing = lift remaining + boost domain rating · compound effect 6-12 เดือน

Manual pruning workflow: 1 article = 20-40 min audit (GSC + content review + decision + action) · 1,000 article = 350-650 hr · 4-5 คน 2 เดือน · cost ฿800K-1.5M · n8n + AI = save 80% time + cost

เปรียบเหมือนกับ garden · ถ้าไม่ตัดกิ่งแห้ง = ดูดน้ำ + nutrient · ต้นไม้ดีไม่โต · prune dead branch quarterly = ต้นไม้ healthy + grow fast · content site = same · prune = mandatory maintenance

ผม analyze 18 Thai content team พบ pattern: automate prune ครบ domain rating +10-20 point/ปี · organic +50-100% · stale content < 5% · manual prune (when done) domain stable · manual not done domain -5-15 point · gap revenue ฿1-10M/ปี

6-Node n8n Content Pruning Workflow

1. GSC API Node

// HTTP Request node
POST https://searchconsole.googleapis.com/v1/sites/
  <site>/searchAnalytics/query

body: {
  startDate: "2025-05-19",  // 12 mo ago
  endDate: "2026-05-19",
  dimensions: ["page"],
  rowLimit: 25000
}

Output: impressions, clicks, ctr, position per URL

2. Webflow CMS API

GET /collections/{id}/items · pull blog post + metadata (publish_date · word_count · last_updated · author · tags) · paginate 100/page · merge all batch

3. Merge Node

Join GSC data with CMS metadata by URL · output enriched dataset · ทุก article มี: traffic + content metadata + freshness · 1 record/article

4. Decision Rule Function

// JavaScript classification
if (clicks_12mo === 0 && word_count < 500) {
  action = "PRUNE"; // 301 to similar
} else if (position > 30 && impressions < 100) {
  action = "UPDATE"; // refresh content
} else if (similar_url_count > 1) {
  action = "CONSOLIDATE"; // merge + 301
} else {
  action = "KEEP";
}
return { ...item, action, confidence };

5. AI Analysis (OpenAI)

Send article title + decision + GSC stat to GPT-4 · request "เห็นด้วย/ไม่เห็นด้วย + reason + suggestion" · human review final decision · catch edge case

6. Output Dashboard

Notion/Airtable: list ทุก article + action + AI reasoning + GSC stat · Slack alert weekly · human approve batch · execute via Webflow API (delete/update/redirect)

เปรียบเทียบ Manual vs n8n Automated Pruning

Metric Manual n8n Automated
Time/1K article 350-650 hr 40-80 hr
Cost ฿800K-1.5M ฿120K-280K
Frequency 1-2 ปี/ครั้ง quarterly
Accuracy subjective data-driven

5 ข้อผิดพลาดของ Content Pruning

  1. Never Prune · 70% Thai team · stale content compound · domain rating -5-15 point · setup quarterly prune ตอนนี้
  2. Delete without 301 · 60% delete ตรง · backlink หาย · ranking ตก · 301 to similar content เสมอ
  3. Skip Consolidation · 50% prune ทีละ article · ไม่ merge similar · waste link equity · consolidate ก่อน delete
  4. No AI Review · 70% rule-based เท่านั้น · false positive 15-25% · add AI layer · accuracy +30%
  5. Manual Re-run · 85% ไม่ automate · waste 200+ hr/quarter · build n8n workflow · save 80% time

4 ขั้นตอน Implement n8n Pruning

  1. Setup n8n + GSC + Webflow API · 1 สัปดาห์
  2. Build 6-node Workflow + Test · 2-3 สัปดาห์
  3. First Audit + Manual Review · 2-4 สัปดาห์
  4. Execute Pruning + Quarterly Cron · ongoing

ราคา n8n Content Pruning ในไทย 2026

Scope ราคา (setup)
Basic (< 1K article) ฿45K-120K
Mid (1K-10K article) ฿180K-450K
Enterprise (10K+ + multi-locale) ฿550K-1.5M
"Content pruning 2026 = automate-friendly process · n8n + GSC + AI = save 80% time · 85% ของ Thai content team manual · waste 200+ hr/quarter · ผมเสีย client domain rating -8 ปีที่แล้วเพราะ never prune · 6 เดือน automate ผ่าน n8n · prune 680 thin · DR +12 · organic +85% · ROI ของ automate pruning สูงสุดของ content ops"
— Thanakit Chaithip, Founder, Vision X Brain

คำถามที่พบบ่อย

ทำไม Content Pruning สำคัญต่อ SEO

Thin/stale content drag domain authority · Google penalize site average quality · prune = lift remaining content + boost DR · compound 6-12 เดือน · skip = DR -5-15 point/ปี · organic -30-50%

ราคา n8n Content Pruning ในไทยเท่าไหร่

Basic < 1K ฿45K-120K · Mid 1K-10K ฿180K-450K · Enterprise 10K+ ฿550K-1.5M · monthly cost n8n + OpenAI ฿2K-15K · ROI 30-60 วันผ่าน time saving

ซื้อบริการ Content Pruning Automation ที่ไหน

(1) Content ops agency + n8n specialist · (2) Senior SEO + automation engineer · (3) Self-build + n8n template · เลือกตาม article count + technical skill

รีวิว Content Pruning วัดผลยังไง

4 ตัว: (1) Domain rating (เป้า +10-20/ปี) · (2) Organic traffic (เป้า +50-100%) · (3) Stale content % (เป้า < 5%) · (4) Pruning time/article (เป้า < 3 min · จาก 20-40 min manual) · 6-12 เดือน วัดผล

ใช้ Zapier แทน n8n ได้ไหม

ได้แต่ไม่แนะนำ · Zapier per-task pricing · 1K article × 6 step = 6K task = $200+/m · n8n self-host ฿200-500/m · zero per-task · cost ต่างกัน 30-50x · scale ดีกว่า · n8n recommend สำหรับ data-heavy workflow

บริการที่เกี่ยวข้อง

บอสวันนี้

บอส build ตามที่ผม recommend · n8n 6-node workflow + OpenAI review + Notion dashboard · quarterly cron · cost ฿220K setup + ฿8K/เดือน runtime · 5 สัปดาห์ work

9 เดือนหลัง: prune 380 thin content + consolidate 120 · domain rating 42 → 54 (+12) · organic 24K → 44K/เดือน (+85%) · time saving 280 hr/quarter (manual estimate) · ทีม content focus new article · CEO promote บอสเป็น Head of SEO Ops

ผมถามบอสว่าสิ่งที่ surprise ที่สุดคืออะไร

เขานิ่งไปนาน แล้วบอกว่า "พี่ ผมเรียนรู้ว่า "never prune" คือ silent SEO killer · ผมเสีย 8 ปี publish เรื่อยๆ · stale content drag DR -8 · 5 สัปดาห์ build n8n · prune 500 article · DR +12 · ผมไม่ skip pruning quarter อีก"

สิ่งที่ทำได้ทันที: export GSC last 12 mo data · count article ที่ click = 0 · ถ้า > 15% ของ total = content debt · setup n8n + 6-node workflow · 5-6 สัปดาห์ build · execute prune quarterly · 6 เดือนแรกจะเห็น DR +5-10 + organic +30-60%