Skip to content

Instantly share code, notes, and snippets.

@cafuego
Created March 14, 2013 05:22
Show Gist options
  • Save cafuego/5159019 to your computer and use it in GitHub Desktop.
Save cafuego/5159019 to your computer and use it in GitHub Desktop.
hook_preprocess_node()
function mytheme_preprocess_node(&$variables) {
$author = node_load($variables['node']->uid);
$variables['author_mail'] = check_plain($author->mail);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment