惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
罗磊的独立博客
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
A
About on SuperTechFans
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed
IT之家
IT之家
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
月光博客
月光博客
T
Tailwind CSS Blog
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Beyond "Update All" — selecting plugins across sites whil...
Susumu Takahashi · 2026-06-18 · via DEV Community

"A vulnerability in Elementor was just disclosed. Several of the sites I maintain run Elementor. I need to update only Elementor across those sites today."

If you maintain WordPress sites for multiple clients, this scenario happens several times a month. Core updates and other plugin updates can wait for the regular maintenance run, but a specific plugin needs to land urgently.

The trouble is that mainstream maintenance tools don't really offer a UI for "a targeted update across multiple sites, with safety mechanisms intact." Here's how that design problem can be solved.

The limits of an industry-standard "Update All"

Most WordPress maintenance tools have an "Update All" button on each site's dashboard.

  • Press it, and every plugin update fires at once
  • If any one of them breaks the site, the industry-standard "Safe Updates" / "Atomic Updates" feature rolls everything back
  • There's no granularity for "update just Elementor" or "across only this subset of sites"

The structural reasons the industry converged on this design are covered in three gaps the WordPress maintenance industry still hasn't solved — the Worker-plugin-over-HTTP-API architecture constrains how fine-grained the operations can be.

The practical result: an agency task like "update only Elementor across these sites" tends to fall back to logging into each site one by one and updating manually.

What was needed was two-axis granularity (site × plugin)

WP Maintenance Manager v1.6.2 solves this with two axes of granularity:

  • Site axis: see, across every managed site, which plugins are due for update
  • Plugin axis: pick the (site × plugin) cells with checkboxes — only those combinations are updated

Instead of an "Update All" button, you get a "update only the combinations you picked" button.

Cross-site dashboard design

Opening "Plugin Updates" from the toolbar triggers an SSH-parallel scan across every managed site, surfacing all plugins that are due for update.

Results are grouped by plugin name:

Elementor — needs update on several sites (4.0.0 → 4.0.8)
  ☐ siteA.com
  ☐ siteB.com
  ☐ siteC.com

Yoast SEO — needs update on several sites (22.0 → 22.1)
  ☐ ...

At a glance, you can see which plugins are out of date on which sites. Looking at the full list of sites, you can make decisions like "update Elementor everywhere, defer Yoast for another window."

Results are cached in the browser and surface immediately even after restarting the app. The parallel SSH scan completes quickly even with a large fleet, so it's lightweight enough to check casually.

A selective update runs with the same safety mechanisms as regular maintenance

This is the key point. When you press "Update selected plugins," the underlying execution uses exactly the same safety mechanisms as a regular maintenance run:

  • Database backup (taken before any update)
  • One-plugin-at-a-time updates with HTTP checks + automatic pinpoint rollback if something breaks (implementation deep dive)
  • Visual check and summary email

The only difference from a regular maintenance run is that Core / theme / translation updates are skipped. Only the plugin combinations you picked actually run.

The log history and report carry a "selective update" tag, and the names of the targeted plugins are recorded. You can trace back later: "when did we push Elementor across multiple sites last month, and to which sites?" The audit trail is preserved.

Takeaway — granularity changes how operations feel

The simplicity of "Update All" is convenient, but it doesn't fit the realistic need to move only a specific plugin across multiple sites simultaneously.

The combination of cross-site dashboard + selective update + safety mechanisms preserved is what makes "a targeted, safe, multi-site update" actually work. When a single plugin's vulnerability gets disclosed, you can update just the affected sites in one action — safely.

What used to be a binary choice between "update everything" and "do nothing" becomes surgical movement with all the safety nets still on. That shifts where the line falls between emergency response and routine maintenance.