繁体   English   中英

Buddypress 重定向到用户个人资料页面

[英]Buddypress redirection to user profile page

我试图在登录 un Buddypress 后重定向到用户个人资料页面。 我使用此代码,但它从 URL 中省略了用于重定向的用户名。 我该怎么办?

function custom_login_redirect_to($user_login, $user) {
        bp_core_redirect( get_option('siteurl') ."/profile/" . bp_core_get_user_displayname( bp_loggedin_user_id() ) ."/profile/" );
}
add_action('wp_login', 'custom_login_redirect_to', 10, 2);

这是在 URL https://mywebsite/profile/profile而不是https://mywebsite/profile/username/profile

这种方法更便携:

bp_core_redirect( bp_core_get_user_domain( $user->id ) );

谢谢大家。 我没有得到当前用户,这就是它失败的原因。 有效的代码。

function custom_login_redirect_to($user_login, $user) {
    $username = bp_core_get_username( $user->id );
    bp_core_redirect( get_option('siteurl') ."/profile/" . $username ."/profile/" );
}
add_action('wp_login', 'custom_login_redirect_to', 10, 2); 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM