Disable email notifications to admin users and set a custom email in iThemes Security on your child site.
Snippet Type
Execute on Child Sites
Snippet
function ithemes_security_custom_notification_email( $emails ) {
return [
'[email protected]'
];
}
add_filter( 'itsec_notification_email_recipients', 'ithemes_security_custom_notification_email' );