Title: CacheWing
Author: dmahasanexpert
Published: <strong>2026 年 9 月 4 日</strong>
Last modified: 2026 年 9 月 11 日

---

搜尋外掛

![](https://ps.w.org/cachewing/assets/banner-772x250.png?rev=3680966)

![](https://ps.w.org/cachewing/assets/icon-256x256.png?rev=3680966)

# CacheWing

 由 [dmahasanexpert](https://profiles.wordpress.org/dmahasan/) 開發

[下載](https://downloads.wordpress.org/plugin/cachewing.1.0.4.zip)

 * [詳細資料](https://tw.wordpress.org/plugins/cachewing/#description)
 * [使用者評論](https://tw.wordpress.org/plugins/cachewing/#reviews)
 *  [安裝方式](https://tw.wordpress.org/plugins/cachewing/#installation)
 * [開發資訊](https://tw.wordpress.org/plugins/cachewing/#developers)

 [技術支援](https://wordpress.org/support/plugin/cachewing/)

## 外掛說明

**CacheWing** is a fast, no-bloat WordPress performance plugin built to improve 
page speed and Core Web Vitals scores without the complexity of a full-featured 
caching suite. It does five things, and does them well:

 * **Full-Page Caching** — serves static HTML snapshots to logged-out visitors so
   PHP and the database are skipped entirely on repeat requests.
 * **CSS Minification** — automatically minifies first-party stylesheets and serves
   the minified version from a local cache.
 * **JavaScript Deferral** — defers non-critical scripts so the browser can paint
   the page before running them, with an exclude list for scripts that must load
   immediately.
 * **Font Optimization** — loads Google Fonts asynchronously so web fonts never 
   block the initial render.
 * **Lazy Loading** — adds native lazy-loading to images and iframes below the fold,
   while protecting your Largest Contentful Paint (LCP) image from being delayed.

Built for site owners and developers who want a fast, transparent, single-purpose
caching plugin — not a 40-tab settings panel.

#### Why CacheWing

Most all-in-one caching plugins bundle features you’ll never use and settings that
are hard to reason about. CacheWing focuses only on the optimizations that move 
Google PageSpeed Insights and Core Web Vitals scores, with sane defaults that work
out of the box.

#### Features at a glance

 * One-click cache clearing from the admin bar
 * Automatic cache purge on publish/update, new comments, theme switch, and plugin
   activation/deactivation
 * Per-script exclude list for JavaScript deferral
 * Cache status dashboard (pages cached, disk usage)
 * Zero external dependencies, zero tracking, zero telemetry

## 安裝方式

 1. Upload the `cachewing` folder to `/wp-content/plugins/`, or install the zip directly
    via Plugins  Add New  Upload Plugin.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. Go to Settings  CacheWing to review the default settings (all optimizations are
    enabled by default).

## 常見問題集

### Will this conflict with another caching plugin?

Deactivate any other page-caching plugin before activating CacheWing — running two
full-page cache plugins at once can cause stale content or conflicts.

### Does it cache pages for logged-in users?

No. Full-page caching only applies to logged-out visitors, so logged-in editors 
and admins always see a live, uncached version of the page.

### Will minifying my CSS break my design?

CacheWing only minifies first-party stylesheets (files served from your own domain)
using safe whitespace/comment stripping — it does not restructure selectors, so 
visual regressions are extremely unlikely. You can turn CSS minification off at 
any time from the settings page.

### How do I exclude a script from being deferred?

Add its registered script handle (the name used in `wp_enqueue_script()`) to the“
Exclude handles” field on the settings page, comma-separated.

## 使用者評論

這個外掛目前沒有任何使用者評論。

## 參與者及開發者

以下人員參與了開源軟體〈CacheWing〉的開發相關工作。

參與者

 *   [ dmahasanexpert ](https://profiles.wordpress.org/dmahasan/)

[將〈CacheWing〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/cachewing)

### 對開發相關資訊感興趣？

任何人均可[瀏覽程式碼](https://plugins.trac.wordpress.org/browser/cachewing/)、查看
[SVN 存放庫](https://plugins.svn.wordpress.org/cachewing/)，或透過 [RSS](https://plugins.trac.wordpress.org/log/cachewing/?limit=100&mode=stop_on_copy&format=rss)
訂閱[開發記錄](https://plugins.trac.wordpress.org/log/cachewing/)。

## 變更記錄

#### 1.0.4

 * Fixed: enabling “Defer JavaScript” could defer jQuery core (`jquery-core`) while
   other enqueued scripts that expect jQuery to already be loaded (page builders,
   jQuery UI, WP media, etc.) kept loading synchronously — causing “jQuery is not
   defined” errors and breaking those scripts on the front end. jQuery core/migrate
   are now always excluded from deferral, and any script that directly depends on
   a deferred/excluded handle is automatically excluded too, so this can no longer
   happen regardless of the “Exclude handles” setting.
 * Fixed: saving settings on the CacheWing options page did not clear the full-page
   cache, so a change like turning “Defer JavaScript” off could appear to have no
   effect on the front end until the existing cache expired or “Clear Cache Now”
   was clicked manually. Settings saves now clear the page cache automatically.

#### 1.0.3

 * Renamed the plugin from “DM Super Cache” to “CacheWing” at the request of the
   WordPress.org Plugins Team, since “Super Cache” was judged too close to the existing“
   WP Super Cache” plugin name.
 * Updated text domain to `cachewing` to match the new name.
 * Fixed the last two WordPress.org Plugin Check findings: moved a misplaced `phpcs:
   ignore` comment onto the exact flagged line in the font-preload code, and isolated
   an `ABSPATH` file-path lookup into its own function in the CSS minifier so it
   no longer trips the ABSPATH/file-write heuristic check.
 * No functional changes — caching, minification, defer, font, and lazy-load behavior
   is unchanged from 1.0.2.

#### 1.0.2

 * Updated “Tested up to” to WordPress 7.1.
 * Shortened the readme short description to meet WordPress.org’s 150-character 
   limit.
 * Hardened input handling: all `$_SERVER`/`$_POST`/`$_REQUEST` reads are now unslashed
   and sanitized before use.
 * Switched cache file read/write/delete operations to the WP_Filesystem API instead
   of raw PHP filesystem calls, only when the “direct” filesystem method is available(
   falls back to safe direct PHP file calls otherwise, so nothing ever prompts for
   FTP credentials on the front-end).
 * Replaced `parse_url()` with `wp_parse_url()` and `unlink()` with `wp_delete_file()`.

#### 1.0.1

 * Updated “Tested up to” to WordPress 7.0.
 * Minor readme and plugin metadata cleanup.

#### 1.0.0

 * Initial public release: full-page cache, CSS minification, JS defer, font optimization,
   lazy-loading, and admin settings page.

## 中繼資料

 *  版本 **1.0.4**
 *  最後更新 **2 週前**
 *  啟用安裝數 **少於 10 次**
 *  WordPress 版本需求 ** 5.8 或更新版本 **
 *  已測試相容的 WordPress 版本 **7.1.2**
 *  PHP 版本需求 ** 7.4 或更新版本 **
 *  語言
 * [English (US)](https://wordpress.org/plugins/cachewing/)
 * 標籤:
 * [cache](https://tw.wordpress.org/plugins/tags/cache/)[lazy load](https://tw.wordpress.org/plugins/tags/lazy-load/)
   [minify](https://tw.wordpress.org/plugins/tags/minify/)[Page Speed](https://tw.wordpress.org/plugins/tags/page-speed/)
   [performance](https://tw.wordpress.org/plugins/tags/performance/)
 *  [進階檢視](https://tw.wordpress.org/plugins/cachewing/advanced/)

## 評分

這個項目尚無任何評論記錄。

[撰寫評分](https://wordpress.org/support/plugin/cachewing/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/cachewing/reviews/)

## 參與者

 *   [ dmahasanexpert ](https://profiles.wordpress.org/dmahasan/)

## 技術支援

使用者可在技術支援論壇提出意見反應或使用問題。

 [檢視技術支援論壇](https://wordpress.org/support/plugin/cachewing/)