Skip to content

Instantly share code, notes, and snippets.

@AngeliMae
Created August 24, 2022 14:35
Show Gist options
  • Select an option

  • Save AngeliMae/a44e588775f0af043fa833973d0b806d to your computer and use it in GitHub Desktop.

Select an option

Save AngeliMae/a44e588775f0af043fa833973d0b806d to your computer and use it in GitHub Desktop.
disable auto-login after registration
add_action( 'um_registration_complete', 'um_registration_complete_custom', 10, 2 );
function um_registration_complete_custom( $user_id, $args ) {
$url = UM()->permalinks()->get_current_url();
exit( wp_redirect( $url ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment