2012-06-22 4 views
1

새 계정이 만들어졌지만 작동하지 않는 경우 특수 페이지에서 강제로 리디렉션하고 싶습니다. 항상 WP 대시 보드로 리디렉션됩니다.Wordpress에서 새 계정을 강제로 리디렉션 하시겠습니까?

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

새 계정으로 강제로 리디렉션하는 방법을 알려주세요.

답변

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(); 
} 
+0

차이점은 무엇입니까 ...? – Steffi

+0

차이점은 작동한다는 것입니다. –

관련 문제