BuddyPress show post author avatar

1.7k Views Asked by At

On my home page where all my blog posts are I want to show the avatar of the author and then link it to the members profile so for example: domain.com/members/cameron.

I have managed to get the avatar showing, just need to grab the url: <a title="View profile for <?php echo get_the_author(); ?>" href=""><?php echo get_avatar( get_the_author_meta('user_email'), $size = '32' ); ?></a> Can anyone help? Thanks.

1

There are 1 best solutions below

1
On BEST ANSWER

Can you try this?

<a title="View profile for <?php echo get_the_author(); ?>"
   href="/members/<?php echo get_the_author_meta('nickname') ?>">
   <?php echo get_avatar( get_the_author_meta('user_email'), $size = '32' ); ?>
</a>