Display a User Gravatar from an Email Address


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2. $gravatar_link = 'http://www.gravatar.com/avatar/' . md5($comment_author_email) . '?s=32';
  3. echo '<img src="' . $gravatar_link . '" />';
  4. ?>
  5.  
  6. The variable "$comment_author_email" would be a string of a valid email address. If the email isn't in the Gravatar database, it will return a default graphic. "$comment_author_email" is the default WordPress variable that populates from a cookie for people who have previously commented (if the theme supports it).

URL: http://css-tricks.com/snippets/php/display-a-user-gravatar-from-email-address/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.