Skip to content

Instantly share code, notes, and snippets.

@patrickposner
Created June 9, 2021 17:43
Show Gist options
  • Save patrickposner/13a2b602abbce26a1bc765a895ab6bf4 to your computer and use it in GitHub Desktop.
Save patrickposner/13a2b602abbce26a1bc765a895ab6bf4 to your computer and use it in GitHub Desktop.
Passster: Redirect after successfull unlock.
<?php
add_action( 'passster_validation_success', function( $password ) {
$url = 'https://www.mydomain.de';
wp_safe_redirect( $url );
exit;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment