Change default user profile URL - BBpress Plugin
问题 Bbpress Wordpress Plugin have default link user profile url. The link like this: www.example.com/forum/users/(username) The main purpose in nutshell is: I want to change the url. Actually, I found the solution but its not perfect. The code like this: function user_profile_link(){ $url = 'http://localhost/example.com/profile/'; $author_id = bbp_get_reply_author_id(); $user_info = get_userdata($author_id); echo '<a href="'.$url.''.$user_info->user_login.'"> '. $user_info->display_name.' </a>';