Created
August 24, 2022 14:35
-
-
Save AngeliMae/a44e588775f0af043fa833973d0b806d to your computer and use it in GitHub Desktop.
disable auto-login after registration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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