views:

58

answers:

1

I need to pull user profile fields to display in my page.tpl. I know the profile data isnt included in the $user array but I think with the theme function phptemplate_preprocess_page I can add the data, but Im not sure exactly how.

+2  A: 
profile_load_profile($user);

Will add the profile data to the user object.

Simon

related questions