Skip to content

Instantly share code, notes, and snippets.

@ramiabraham
Last active February 2, 2016 14:52
Show Gist options
  • Save ramiabraham/bc654d2ec5c28c077e38 to your computer and use it in GitHub Desktop.
Save ramiabraham/bc654d2ec5c28c077e38 to your computer and use it in GitHub Desktop.
Get gravatar img src in non-WP context
<?php
function gravatar_img_src() {
$emails = array();
# Gravatar is all about dem jpg's
$file_extension = '.jpg';
# add a size via query here, eg 250, 400
$file_size = '?size=250px';
# then just md5 the email
foreach ( $emails as $email ) {
echo 'https://secure.gravatar.com/avatar/' . md5( $email ) . $file_extension . $file_size . PHP_EOL;
}
}
gravatar_img_src();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment