Title: Tiny Simple Admin Notice Silencer
Author: MythThrazz
Published: <strong>2026 年 9 月 23 日</strong>
Last modified: 2026 年 9 月 23 日

---

搜尋外掛

![](https://ps.w.org/tiny-simple-admin-notice-silencer/assets/banner-772x250.png?
rev=3708745)

![](https://ps.w.org/tiny-simple-admin-notice-silencer/assets/icon.svg?rev=3708745)

# Tiny Simple Admin Notice Silencer

 由 [MythThrazz](https://profiles.wordpress.org/myththrazz/) 開發

[下載](https://downloads.wordpress.org/plugin/tiny-simple-admin-notice-silencer.1.0.0.zip)

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

 [技術支援](https://wordpress.org/support/plugin/tiny-simple-admin-notice-silencer/)

## 外掛說明

WordPress emails the site admin about almost everything it does. A plugin auto-updated,
or failed to. Someone registered. A comment is waiting for moderation. A privacy
request got confirmed. On a busy site that’s a steady stream of near-identical mail,
and the few messages that matter get buried in it.

I built **Tiny Simple Admin Notice Silencer** to switch that off. Activate it and
the admin notifications stop. There’s nothing to configure – no settings page, no
options, no admin menu.

### What it silences

 * **Automatic updates** – plugin, theme and core auto-update result emails, the“
   a new WordPress version is available” notice, and the auto-update debug dump.
 * **Accounts** – the “New User Registration” and “Password Lost and Changed” notices
   sent to the admin, plus the notice that the site admin address changed.
 * **Comments** – comment moderation requests, and “new comment on your post” notices
   when the admin wrote the post.
 * **Privacy requests** – the “a request was confirmed” notice sent to the admin.
 * **WP Mail SMTP** – the weekly “Email Summary” digest, if you have that plugin
   installed.

### What it leaves alone, on purpose

 * **Recovery Mode** – when a fatal error takes your site down, WordPress emails
   you a recovery link. That’s the one notification you always want, so the plugin
   doesn’t touch it.
 * **Emails your users get** – welcome emails for new users, password-reset links,
   password and email change confirmations sent to the account holder, privacy confirmations
   sent to whoever asked, order and form mail from other plugins. All of it still
   goes out.
 * **`wp_mail()` itself** – there’s no global off switch. Nothing gets intercepted,
   redirected or dropped.

One detail worth knowing. Notices like “your password was changed” or “someone commented
on your post” go to the **account holder**, who isn’t always the admin. If I silenced
them for everyone, every member would lose their warning that someone took over 
their account. So the plugin only suppresses them when the account holder _is_ the
admin. Your users keep their security mail and your inbox gets quiet.

### For developers: six filters

You can switch each group back on separately, and add more addresses to the admin
list, from a small plugin or mu-plugin.

**Where you put `add_filter` matters.** The plugin reads the five group filters 
once, on `plugins_loaded`. If you register a callback after that – in a theme’s `
functions.php`, on `init`, or on `plugins_loaded` at a priority above 10 – it never
runs and nothing tells you. Put group opt-outs in an mu-plugin or at the top level
of a plugin file. `tsans_admin_addresses` doesn’t have this problem, because it’s
read each time a notice is checked.

    ```
    // Keep comment notifications flowing to the admin.
    add_filter( 'tsans_disable_comment_emails', '__return_false' );

    // Treat these addresses as "the admin" too, so their own
    // account notices are silenced as well.
    add_filter( 'tsans_admin_addresses', function ( $addresses ) {
        $addresses[] = 'editor@example.com';
        return $addresses;
    } );
    ```

 * `tsans_disable_update_emails` – the five automatic-update gates (default `true`).
 * `tsans_disable_account_emails` – account notices sent to the admin (default `
   true`).
 * `tsans_disable_comment_emails` – comment moderation and notices on the admin’s
   own posts (default `true`).
 * `tsans_disable_privacy_emails` – the privacy-request confirmation sent to the
   admin (default `true`).
 * `tsans_disable_third_party_emails` – the WP Mail SMTP weekly summary (default`
   true`).
 * `tsans_admin_addresses` – array of addresses treated as “the admin”. Default 
   is `array( get_option( 'admin_email' ) )`. A single string works too, and the
   match ignores case.

### From the maker of WP Multi Tool

This plugin is built by the same developer behind [WP Multi Tool](https://wpmultitool.com/)—
the Swiss Army knife for WordPress developers and site administrators. If you manage
multiple WordPress sites, check it out.

## 安裝方式

 1. Install it from the WordPress plugin directory, or upload the `tiny-simple-admin-
    notice-silencer` folder to `/wp-content/plugins/`.
 2. Activate it. The admin notifications stop right away, and there’s nothing to set
    up.

## 常見問題集

### Will my users still get password-reset emails?

Yes. Password-reset links, welcome emails for new users and every other email your
users get keep going out. The plugin only silences notices addressed to the site
admin.

### Does the Recovery Mode email still work?

Yes. When a fatal error takes the site down, WordPress still emails you the recovery
link. I left that one alone on purpose – it’s the email you always want to get.

### Will members still get “your password was changed” emails?

Yes. Core sends those to the account holder, so the plugin only suppresses them 
when the account holder is the site admin. Everyone else keeps getting them. It’s
their warning that someone took over the account.

### Can I turn one group of emails back on?

Yes, each group has its own filter (listed in the Description). For example, `add_filter('
tsans_disable_comment_emails', '__return_false' );` in a small plugin or mu-plugin
turns comment notifications back on and leaves the rest silenced.

### Does an editor who moderates their own comments lose their notification?

Yes, and I don’t love it. WordPress sends the moderation email to the admin **and**
to the post author, if that author can edit the comment. The `notify_moderator` 
filter turns the whole email on or off, though – it can’t drop just the admin from
the recipients. If your members moderate comments, switch the group off with `add_filter('
tsans_disable_comment_emails', '__return_false' );`. The catch: you’ll also start
getting “new comment on your post” notices again.

### Does it work on Multisite?

Yes. Activate it per site or network-wide. Each site silences notices for its own
admin address.

### Does it collect data, phone home, or show ads?

No. There’s no settings page, no tracking, no outbound requests and no upsell. The
whole plugin is one file.

## 使用者評論

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

## 參與者及開發者

以下人員參與了開源軟體〈Tiny Simple Admin Notice Silencer〉的開發相關工作。

參與者

 *   [ MythThrazz ](https://profiles.wordpress.org/myththrazz/)

[將〈Tiny Simple Admin Notice Silencer〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/tiny-simple-admin-notice-silencer)

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

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

## 變更記錄

#### 1.0.0

 * Initial release.

## 中繼資料

 *  版本 **1.0.0**
 *  最後更新 **2 天前**
 *  啟用安裝數 **少於 10 次**
 *  WordPress 版本需求 ** 6.1 或更新版本 **
 *  已測試相容的 WordPress 版本 **7.1.2**
 *  PHP 版本需求 ** 7.4 或更新版本 **
 *  語言
 * [English (US)](https://wordpress.org/plugins/tiny-simple-admin-notice-silencer/)
 * 標籤:
 * [admin](https://tw.wordpress.org/plugins/tags/admin/)[comments](https://tw.wordpress.org/plugins/tags/comments/)
   [email](https://tw.wordpress.org/plugins/tags/email/)[Notifications](https://tw.wordpress.org/plugins/tags/notifications/)
   [updates](https://tw.wordpress.org/plugins/tags/updates/)
 *  [進階檢視](https://tw.wordpress.org/plugins/tiny-simple-admin-notice-silencer/advanced/)

## 評分

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

[撰寫評分](https://wordpress.org/support/plugin/tiny-simple-admin-notice-silencer/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/tiny-simple-admin-notice-silencer/reviews/)

## 參與者

 *   [ MythThrazz ](https://profiles.wordpress.org/myththrazz/)

## 技術支援

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

 [檢視技術支援論壇](https://wordpress.org/support/plugin/tiny-simple-admin-notice-silencer/)

## 贊助

想要支援這個外掛的發展嗎？

 [ 贊助這個外掛 ](https://marcindudek.dev/)