I just want to add author gravatar near the name of the author. I know that I have to add something in the single.php file, but what to add? Thanks!
Leave a Reply
You must be logged in to post a comment.
I just want to add author gravatar near the name of the author. I know that I have to add something in the single.php file, but what to add? Thanks!
You must be logged in to post a comment.
If you’re in the Loop:
echo get_avatar( get_the_author_meta('ID') );
Plenty of info on WP Codex on Gravatar’s.
use:
get_avatar( "id of author" );