Site logo

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

<?php
global $post;
$author_id = $post->post_author;
?>

<?php echo get_avatar( get_the_author_meta( $author_id ));?>

<h5 class="author-title"><?php printf( get_the_author_meta( 'display_name') );?></h5>

<p class="author-description"><?php echo wp_kses( get_the_author_meta( 'description' ), null ); ?></p>

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.