用代码使WordPress成员注册成功后跳转到指定页面
你如果希望你的wordpress
在新会员注册成功后,跳转到指定页面。
那你开启主题的functions.php加入以下代码
[cc lang="php"]// 成员注册成功后跳转到指定页面function __my_registration_redirect() {// 这边我们设定是跳转到首页,你要换成其他页面// 可以将home_url()改成你指定的URL// 如return 'https://onetruth.com.tw';return home_url();}add_filter( 'registration_redirect', '__my_registration_redirect' );[/cc]