WordPress verstuurt standaard email notificaties voor automatische updates van de WordPress core, je plugins en je thema’s. Maar zeker als je meerdere WordPress sites beheert, kan het aantal mailtjes dat je ontvangt behoorlijk oplopen. Gelukkig kun je die email notificaties voor automatische updates uitschakelen. Hieronder laten we zien hoe dat moet.
Email notificaties voor automatische updates uitschakelen: 2 methodes
Methode #1: Met een plugin
Dit is de makkelijkste methode. Je hoeft niet in de code te rommelen en je hebt ook de flexibiliteit om aan te geven welke email notificaties je precies wilt uitschakelen. Om te beginnen moet je de Manage Notification E-mails plugin installeren. Na het activeren van de plugin ga je naar Instellingen > Notification emails. Hier kun je alle instellingen configureren. Scroll naar de auto-update opties en vink de vakjes uit bij de notificaties die je niet meer wil ontvangen. Vergeet niet om de wijzigingen op te slaan.
Methode #2: Met code
Je kunt ook email notificaties voor automatische updates uitschakelen met een stukje code. Je kunt de Code Snippets plugin gebruiken om custom code toe te voegen, of de code handmatig toevoegen aan je functions.php bestand (als je dit nog nooit eerder gedaan hebt, lees dan eerst even een introductie tot functions.php).
Om notificatie emails voor core updates uit te schakelen voeg je de onderstaande code toe:
add_filter( 'auto_core_update_send_email', 'wpb_stop_auto_update_emails', 10, 4 );
function wpb_stop_update_emails( $send, $type, $core_update, $result ) {
if ( ! empty( $type ) && $type == 'success' ) {
return false;
}
return true;
}
Om notificatie emails voor plugin updates uit te schakelen:
add_filter( 'auto_plugin_update_send_email', '__return_false' );
Om notificatie emails voor plugin updates uit te schakelen:
add_filter( 'auto_theme_update_send_email', '__return_false' );
Tot slot
Het is heel begrijpelijk als je email notificaties voor automatische WordPress updates wilt uitschakelen. Hou er echter welk rekening mee dat er nog andere WordPress notificatie mails zijn die je niet wil missen. Denk bijvoorbeeld aan gebruikers die hun wachtwoord vergeten zijn, nieuwe bestellingen in je WooCommerce shop en reacties op blogberichten die goedgekeurd moeten worden. Het is raadzaam om dergelijke notificaties wel gewoon ingeschakeld te laten.