Home / Disable / Disable Update Notifications
Duplicate Snippet

Embed Snippet on Your Site

Disable Update Notifications

Disable all wordpress update notifications

Hagai Maidenberg
<10
Code Preview
php
<?php
	// Disable plugin update emails
	add_filter( 'auto_plugin_update_send_email', '__return_false' );
	// Disable theme update emails
	add_filter( 'auto_theme_update_send_email', '__return_false' );
	// Disable core update emails
	add_filter( 'auto_core_update_send_email', '__return_false' );

Comments

Add a Comment