Title: ZeroBloat Reading Time
Author: the tree
Published: <strong>2026 年 4 月 20 日</strong>
Last modified: 2026 年 4 月 20 日

---

搜尋外掛

![](https://s.w.org/plugins/geopattern-icon/zerobloat-reading-time.svg)

# ZeroBloat Reading Time

 由 [the tree](https://profiles.wordpress.org/muradt20/) 開發

[下載](https://downloads.wordpress.org/plugin/zerobloat-reading-time.1.0.0.zip)

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

 [技術支援](https://wordpress.org/support/plugin/zerobloat-reading-time/)

## 外掛說明

**ZeroBloat Reading Time** does one thing: shows how long it takes to read your 
post.

No settings page. No database entries. No JavaScript. No CSS files. No bloat.

Just install, activate, done.

#### Features

 * Automatically displays “X min read” before post content
 * Works out of the box — zero configuration
 * Shortcode `[reading_time]` for custom placement
 * Translation-ready
 * Less than 5KB total plugin size
 * No external dependencies
 * No tracking or analytics
 * No upsells or pro version

#### Usage

**Automatic:** Just activate the plugin. Reading time appears on all posts.

**Shortcode:** Use `[reading_time]` anywhere in your content or theme.

**With specific post:** Use `[reading_time id="123"]` to show reading time for a
specific post.

#### Styling

The plugin adds minimal CSS. To customize, target `.mrt-reading-time` in your theme:

    ```
    .mrt-reading-time {
        color: #999;
        font-style: italic;
    }
    ```

## 安裝方式

 1. Upload the `zerobloat-reading-time` folder to `/wp-content/plugins/`
 2. Activate through the ‘Plugins’ menu
 3. Done. No configuration needed.

## 常見問題集

### Where are the settings?

There are none. The plugin uses sensible defaults (200 words per minute). If you
need customization, this plugin isn’t for you.

### Can I change the reading speed?

Not through a UI. The plugin is intentionally minimal. Developers can use the filter:

    ```
    add_filter( 'mrt_words_per_minute', function() {
        return 250;
    });
    ```

### Can I hide the reading time on certain posts?

Add this to your theme’s functions.php:

    ```
    add_filter( 'the_content', function( $content ) {
        if ( get_the_ID() === 123 ) {
            remove_filter( 'the_content', 'mrt_display_reading_time' );
        }
        return $content;
    }, 9 );
    ```

### Does it work with custom post types?

By default, it only shows on posts. Developers can extend this with a filter.

### Why no settings page?

Because you don’t need one. Reading time is simple math. The defaults work for 99%
of sites.

## 使用者評論

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

## 參與者及開發者

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

參與者

 *   [ the tree ](https://profiles.wordpress.org/muradt20/)

[將〈ZeroBloat Reading Time〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/zerobloat-reading-time)

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

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

## 變更記錄

#### 1.0.0

 * Initial release

## 中繼資料

 *  版本 **1.0.0**
 *  最後更新 **4 週前**
 *  啟用安裝數 **少於 10 次**
 *  WordPress 版本需求 ** 5.0 或更新版本 **
 *  已測試相容的 WordPress 版本 **6.9.4**
 *  PHP 版本需求 ** 7.4 或更新版本 **
 *  語言
 * [English (US)](https://wordpress.org/plugins/zerobloat-reading-time/)
 * 標籤:
 * [lightweight](https://tw.wordpress.org/plugins/tags/lightweight/)[read time](https://tw.wordpress.org/plugins/tags/read-time/)
   [reading time](https://tw.wordpress.org/plugins/tags/reading-time/)[simple](https://tw.wordpress.org/plugins/tags/simple/)
   [zerobloat](https://tw.wordpress.org/plugins/tags/zerobloat/)
 *  [進階檢視](https://tw.wordpress.org/plugins/zerobloat-reading-time/advanced/)

## 評分

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

[Your review](https://wordpress.org/support/plugin/zerobloat-reading-time/reviews/#new-post)

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

## 參與者

 *   [ the tree ](https://profiles.wordpress.org/muradt20/)

## 技術支援

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

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