websiteguru
websiteguru

Reputation: 493

Drupal: Include user profile data in page.tpl (phptemplate_preprocess_page?)

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.

Upvotes: 1

Views: 466

Answers (1)

Simon
Simon

Reputation: 37978

profile_load_profile($user);

Will add the profile data to the user object.

Upvotes: 2

Related Questions