Archived topic
Author Bio Box
3 replies · Started by gedosan on September 24, 2019
Viewing posts 1–4 of 4
Hi guys
Just implemented the author bio box via an Elements Hook and it's showing up, but my gravatar pic isn't getting pulled through.
I'm using this PHP..is there something up with it?
Thanks
Hi there,
change this line:
<?php echo get_avatar( get_the_author_meta( $author_id ));?>
to:
<?php echo get_avatar( get_the_author_meta( 'ID' ));?>
And you can then remove:
$author_id = $post->post_author;
Perfect thanks David
You're welcome
This archived topic is closed to new replies.