Skip to content

Instantly share code, notes, and snippets.

@ganchiku
Created January 31, 2013 17:35
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 ganchiku/4684648 to your computer and use it in GitHub Desktop.
Save ganchiku/4684648 to your computer and use it in GitHub Desktop.
public function gravatar($email, $size = 80, $rating = 'G')
{
return $grav_url = "http://www.gravatar.com/avatar/" . md5( strtolower( trim( $email ) ) ) . "?&s=" . $size . '&r=' . $rating;
}
<a href="http://ganchiku.com/" style="background-image:url(
'{{ 'ohnoshin@gmail.com'|gravatar(80) }}')">
Shin Ohno</a></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment