Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save msankhala/cd122d095703b28bc576 to your computer and use it in GitHub Desktop.
Save msankhala/cd122d095703b28bc576 to your computer and use it in GitHub Desktop.
<?php
function THEME_preprocess_page() {
global $user;
$user = user_load($user->uid); // Make sure the user object is fully loaded
$wrapper = entity_metadata_wrapper('user', $user);
$vars['full_name'] = $wrapper->field_full_name->value(array('sanitize' => TRUE));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment