I am using FishPig extension to integrate wordpress in magento everything is ok.. now i want to display author gravatar in every post & also on homepage a small author image under title of every post. here is blog url - www.postmygreetings.com/blog/
Edit:
I am using this code to display author name, post date and tags under every post on homepage now i also want to display small author image:
<?php echo stripslashes($this->__('This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.',
$this->getCategoryString($post),
$this->getTagString($post),
$post->getPostDate(),
$post->getAuthor()->getDisplayName())
) ?>
<?php echo stripslashes($this->__('This entry was posted in %s and tagged %s on %s<span class=\"by-author\"> by %s</span>.', $this->getCategoryString($post), $this->getTagString($post), $post->getPostDate(), $post->getAuthor()->getDisplayName())) ?>
– Satinder Singh