Redirect after register wordpress -
im doing website in wordpress. im pretty new.
but got issue, how change redirect in registration form, instead profil edit homepage of web.
thanks help, mymek
if understood correctly trying redirect user after successful registration home page.
try adding following code functions.php
inside themes folder.
this redirect user home_url() upon successful registration.
add_filter( 'registration_redirect', 'my_redirect_home' ); function my_redirect_home( $registration_redirect ) { return home_url(); }
Comments
Post a Comment