Code-Snippets-Functions/Execute a function on a child site/WordPress/disable-email-change-email-notification-specific-user.txt

6 lines
264 B
Text

add_filter( 'send_email_change_email', function( $send, $user, $user_data ) {
if ( isset( $user->ID ) && $user->ID === 1200 ) {
return false; // Disable email for user ID 1243
}
return $send; // Default behavior for all other users
}, 10, 3 );