Hello,
Sure, there two ways to disable email notifications: with a constant in your wp-config
file, or using a filter in your theme’s functions.php
file.
Using constants
Disable plugins auto-updates email notifications:
define( 'WP_DISABLE_PLUGINS_AUTO_UPDATE_EMAIL', false );
Disable themes auto-updates email notifications:
define( 'WP_DISABLE_THEMES_AUTO_UPDATE_EMAIL', false );
Using filter hooks
Disable plugins auto-updates email notifications:
function wporg_disable_plugins_auto_update_email() {
return false;
}
add_filter( 'send_plugins_auto_update_email', 'wporg_disable_plugins_auto_update_email' );
Disable themes auto-updates email notifications:
function wporg_disable_themes_auto_update_email() {
return false;
}
add_filter( 'send_themes_auto_update_email', 'wporg_disable_themes_auto_update_email' );
Cheers,
Jb