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

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -