2011-02-03 102 views
1

在我的主頁上,我的所有博客文章是我想顯示作者的頭像,然後將其鏈接到成員配置文件,例如:domain.com/members/cameron。BuddyPress顯示文章作者頭像

我已經設法得到頭像顯示,只需要抓住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>任何人都可以幫忙嗎?謝謝。

+0

有沒有更新?謝謝。 – Cameron 2011-02-03 20:48:15

回答

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

暱稱與用戶名不盡相同。嘗試user_login確實有效,但它依賴於/ members /這個不完美的URL,但是可以工作:/謝謝 – Cameron 2011-02-04 14:31:25