Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created February 24, 2014 09:56
Show Gist options
  • Save jameskoster/9184853 to your computer and use it in GitHub Desktop.
Save jameskoster/9184853 to your computer and use it in GitHub Desktop.
Sttiched - Change gravatar email in introduction
add_filter( 'woo_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