Performance: Multisite network basics
MEDIUM IMPACT
This concept affects the initial page load speed and server response time when managing multiple sites under one WordPress installation.
Use WordPress multisite to share one codebase, plugins, and themes across all sites.Separate WordPress installations for each site with duplicated plugins and themes.
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Separate installs per site | Multiple independent DOM trees | Multiple reflows per site load | High due to duplicated assets | [X] Bad |
| Multisite network shared install | Single DOM tree per site | Single reflow per site load | Lower due to shared assets | [OK] Good |