Disable email notifications to admin users and set a custom email in iThemes Security

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' );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.