Skip to content

Instantly share code, notes, and snippets.

@woodwardtw
Last active August 29, 2015 14:22
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 woodwardtw/9fc56df4baef68b341bd to your computer and use it in GitHub Desktop.
Save woodwardtw/9fc56df4baef68b341bd to your computer and use it in GitHub Desktop.
get gravatar image in FacetWP for OLE site
<?php
while (have_posts()):
the_post();
?>
<?php
if (get_post_meta(get_the_ID(), 'gravatar_email', true)):
?>
<div class="person">
<?php
$gravy = get_post_meta(get_the_ID(), 'gravatar_email', true);
echo get_avatar($gravy, $size = '96', $default = '<path_to_url>');
?>
<?php
endif;
?>
<a href="<?php
the_permalink();
?>"><?php
the_title('<h3>', '</h3>');
?></a>
</div>
<?php
endwhile;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment