BuddyPress显示帖子作者头像

时间:2011-02-03 18:54:09

标签: php wordpress buddypress

在我的主页上,我的所有博客帖子都是我想要显示作者的头像,然后将其链接到成员个人资料,例如:domain.com/members/cameron。

我设法让头像显示,只需要抓住网址:<a title="View profile for <?php echo get_the_author(); ?>" href=""><?php echo get_avatar( get_the_author_meta('user_email'), $size = '32' ); ?></a>任何人都可以帮忙吗?感谢。

1 个答案:

答案 0 :(得分:0)

你能试试吗?

<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>