Skip to content

Instantly share code, notes, and snippets.

@gblnovaes
Created June 3, 2014 19:02
Show Gist options
  • Save gblnovaes/615c516c73448d5b0099 to your computer and use it in GitHub Desktop.
Save gblnovaes/615c516c73448d5b0099 to your computer and use it in GitHub Desktop.
Redirecionamento de cadastro
Esse script tem o objetivo de direcionar o cadastro para outra pagina.
function redirect_after_register_user($user_id) {
echo '<script type="text/javascript">window.location = "http://webeneural.com/wp-admin/user-edit.php?user_id='.$user_id.'"</script>';
}
add_action( 'user_register', 'redirect_after_register_user');
essa action precisa ser adcionada no function.php do wordpress.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment