1

新しいアカウントが作成されたときに特別なページでリダイレクトを強制したいのですが、機能しません。常にWPダッシュボードにリダイレクトされます。

function redirect_testtt($user_id) {
  wp_redirect('http://www.example.com/me');
  exit;
}
add_action('user_register', 'redirect_testtt');

新しいアカウントのリダイレクトを強制するにはどうすればよいですか?

4

1 に答える 1

0

試す:

// add action to after registration hook
add_action('user_register','after_reg');

// redirect users after registration
function after_reg() {
     wp_redirect('http://google.com');
     exit();
}
于 2012-06-22T16:53:06.493 に答える