Re: Where are the user’s links
What I did was added this code to my theme’s functions.php file:
<?php function _user_name()
{
global $userdata;
get_currentuserinfo();
echo $userdata->user_login;
}
?>
Then, you construct your links like this:
http://yourdomainhere.org/members/<?php _user_name(); ?>/profile
Just swap out “profile” for whatever you want to link to.