We'll create fresh WordPress site with WP Updates Notifier installed. You have 20 minutes to test the plugin after that site we'll be deleted.
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
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:
Languages
Two filters have been provided to allow you to alter the email subject and email content being sent by WP Updates Notifier.
@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' );
@parameters:
$message – the content of the email to be filtered
Example:
/*
* Alter the email content being sent by WP Updates Notifier
*/
function alter_wp_updates_notifier_email_content( $message ) {
$message = 'This is our new email content that will override the default.';
return $message;
}
add_filter( 'sc_wpun_email_content', 'alter_wp_updates_notifier_email_content' );