wordpressのメール通知を来なくする

functions.phpに以下のコードを追加します。
WordPress関連の自動更新メール通知を停止する
add_filter(‘auto_core_update_send_email’ , ‘__return_false’);
add_filter( ‘auto_plugin_update_send_email’, ‘__return_false’ );
add_filter( ‘auto_theme_update_send_email’, ‘__return_false’ );