By cridenour on
How can I get access to a custom profile field in my page.tpl.php? I am hoping to display a user name I pull down from LDAP and this seems to be the only option but I cannot seem to get it to print..
How can I get access to a custom profile field in my page.tpl.php? I am hoping to display a user name I pull down from LDAP and this seems to be the only option but I cannot seem to get it to print..
Comments
Place the following into
Place the following into your page.tpl.php or anywhere for that matter. Copy/paste and don't forget to remove the spaces in < ?php and < ?
output if you are logged in:
Hello Bunnies
output if the user is not logged in:
Howdy Stranger
user_load() is what I need.
user_load() is what I need. :-)
Thank you very much.