Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created July 15, 2014 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jameskoster/ed68d95c97116fa1ece5 to your computer and use it in GitHub Desktop.
Save jameskoster/ed68d95c97116fa1ece5 to your computer and use it in GitHub Desktop.
Zephyr - Change email used for header gravatar
add_filter( 'zephyr_header_gravatar_email', 'jk_change_intro_grav_email' );
function jk_change_intro_grav_email( $email ) {
$email = email@email.com;
return $email;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment