Skip to content

Instantly share code, notes, and snippets.

@pascalmaddin
Created October 10, 2013 15:49
Show Gist options
  • Save pascalmaddin/6920655 to your computer and use it in GitHub Desktop.
Save pascalmaddin/6920655 to your computer and use it in GitHub Desktop.
Leitet einen Nutzer nach der Registrierung auf eine beliebige Seite weiter
function __my_registration_redirect(){
return home_url( '/my-page' );
}
add_filter( 'registration_redirect', '__my_registration_redirect' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment