WP Updates Notifier
Sends email to notify you if there are any updates for your WordPress site. Can notify about core, plugin and theme updates.
The facts
- Rating
- 4.2★ from 35
- Active installs
- 30k+
- Price
- Free
- Last updated
- 14 Feb 2020
- Added
- Jun 2011
- Requires WP
- 3.1
- Tested up to
- WP 5.3.23
- Downloads
- 239,478
Our analysis
AI-assistedWP Updates Notifier is a WordPress plugin that monitors your installation for core, plugin, and theme updates, sending you email notifications when they become available. It is particularly useful for users who do not frequently log in to their WordPress admin or for those managing client websites.
The plugin allows you to set the frequency of update checks, choose to be notified about active themes and plugins only, and customize the email addresses for notifications. It also includes features for advanced users, such as filters and actions to modify email content and subject lines.
Best for: This plugin suits website owners who want to stay informed about updates without regularly accessing their WordPress admin.
What it does well
- ✓Monitors core, plugin, and theme updates
- ✓Configurable check intervals: hourly, twice daily, or daily
- ✓Customizable email notifications for multiple recipients
- ✓Active support and ongoing development
- ✓Includes filters for advanced email customization
Where it falls short
- •No recent updates since February 2020
- •Limited information on advanced features
Verdict
WP Updates Notifier provides a straightforward solution for monitoring updates via email. Its active support is a positive aspect, but the lack of recent updates may be a concern for some users.
From the developer
Scott Cariss's own description of WP Updates Notifier, lightly tidied.
Monitors your WordPress installation for core, plugin and theme updates and emails you when they are available. This plugin is ideal if you don’t login to your WordPress admin regularly or you support a client’s website.
Features
- Set the interval of how often to check for updates; hourly, twice daily or daily.
- Sets WordPress to check for updates more often meaning you get to know about updates sooner.
- Get emailed about core, plugin and theme updates.
- Chose if you want to be notified about active only themes and plugins updates.
- Remove upgrade nag message to non-admin users.
- For advanced users there are a number of filters and actions you can use. More coming soon.
This plugin is a fork of Update Notifier. This plugin was forked because there seemed to be no further development on the existing plugin and there was no way to contact the original author to ask about taking ownership. WP Updates Notifier has the following improvements over Updates Notifier:
- Completely rewritten from the ground up using best practises for writing WordPress plugins
- Code wrapped in a class so better namespace.
- You can set the cron interval, allowing for more frequent checks.
- Update checks trigger WordPress internal update check before notification.
- Allows you to set the ‘from address’.
- Allows you to set multiple ‘to addresses’.
- Makes use of the Settings API.
- A number of available hooks and filters for advanced users.
- Active support and development.
Languages
- French by Christophe Catarina – Added 03 July 2013
- German by Alexander Pfabel – Added 02 October 2012
Filters
Two filters have been provided to allow you to alter the email subject and email content being sent by WP Updates Notifier.
sc_wpun_email_subject
@parameters:
$email_subject – the email subject to be filtered.
Example:
/*
* Alter the email subject being sent by WP Updates Notifier
*/
function alter_wp_updates_notifier_email_subject( $email_subject ) {
$email_subject = 'This is the new email subject for updates notifier';
return $email_subject;
}
add_filter( 'sc_wpun_email_subject', 'alter_wp_updates_notifier_email_subject' );
sc_wpun_email_content
@parameters:
$message – the content of the email to be filtered
Example: