display authors gravatar in wordpress posts

We know the gravatar can display in wordpress comments, however how to display or add author’s gravatar in your wordpress post? Sure, you can use a well known wordpress hack to get the post author gravatar  and display it to your wordpress posts with easily

Simply paste the following code to display author gravatar on your single.php file where you want the gravatar to be displayed:

<?php
	$author_email = get_the_author_email();
	echo get_avatar($author_email, '96');
?>

That’s easy as that, may be useful.


Leave a Reply