试试这首颂歌,别忘了换
例如:http://test.com/custom_pagecustom\\u page=>(使用当前注册页slug更改)
更改此链接\'http://customlink.com/asdasda/\' => (更改要重定向的位置)
$registration\\u redirect=http://customlink.com/asdasda/\'
add_filter( \'registration_redirect\', \'my_redirect_home\' );
function my_redirect_home( $registration_redirect ) {
global $post;
$post_slug=$post->post_name;
if( \'custom_page\' === $post_slug ){
$registration_redirect = \'http://customlink.com/asdasda/\';
}
return $registration_redirect;
}