Title: Tiny Simple Admin Notice Silencer
Author: MythThrazz
Published: <strong>September 23, 2026</strong>
Last modified: September 23, 2026

---

Search plugins

![](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

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

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

 * [Details](https://wordpress.org/plugins/tiny-simple-admin-notice-silencer/#description)
 * [Reviews](https://wordpress.org/plugins/tiny-simple-admin-notice-silencer/#reviews)
 *  [Installation](https://wordpress.org/plugins/tiny-simple-admin-notice-silencer/#installation)
 * [Development](https://wordpress.org/plugins/tiny-simple-admin-notice-silencer/#developers)

 [Support](https://wordpress.org/support/plugin/tiny-simple-admin-notice-silencer/)

## Description

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.

## Installation

 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.

## FAQ

### 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.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Tiny Simple Admin Notice Silencer” is open source software. The following people
have contributed to this plugin.

Contributors

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

[Translate “Tiny Simple Admin Notice Silencer” into your language.](https://translate.wordpress.org/projects/wp-plugins/tiny-simple-admin-notice-silencer)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/tiny-simple-admin-notice-silencer/),
check out the [SVN repository](https://plugins.svn.wordpress.org/tiny-simple-admin-notice-silencer/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/tiny-simple-admin-notice-silencer/)
by [RSS](https://plugins.trac.wordpress.org/log/tiny-simple-admin-notice-silencer/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.0

 * Initial release.

## Meta

 *  Version **1.0.0**
 *  Last updated **2 days ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 6.1 or higher **
 *  Tested up to **7.1.2**
 *  PHP version ** 7.4 or higher **
 * Tags
 * [admin](https://wordpress.org/plugins/tags/admin/)[comments](https://wordpress.org/plugins/tags/comments/)
   [email](https://wordpress.org/plugins/tags/email/)[Notifications](https://wordpress.org/plugins/tags/notifications/)
   [updates](https://wordpress.org/plugins/tags/updates/)
 *  [Advanced View](https://wordpress.org/plugins/tiny-simple-admin-notice-silencer/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/tiny-simple-admin-notice-silencer/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/tiny-simple-admin-notice-silencer/reviews/)

## Contributors

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

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/tiny-simple-admin-notice-silencer/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://marcindudek.dev/)