Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Where are the user’s links


gogoplata
Participant

@gogoplata

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.

Skip to toolbar