BuddyPress 头像出现在指定内容之外

BuddyPress avatar showing up outside designated content

我有一个包含用户头像的 BuddyPress 成员循环。头像显示出来了,但外面包裹着 html 元素。

if ( bp_has_members( bp_ajax_querystring( 'members' ) ) ) :

      $content.="<ul>";

      while ( bp_members() ) : bp_the_member();

      $content.="<li><a href='".bp_member_permalink()."'>".bp_member_avatar()."</a></li>";

   endwhile;

   $content.="</ul>";

else:

   $content.='You are not connected to any companies.';

endif;

结果显示为空

<ul>
  <li></li>
</ul>

头像在那里,但在实际列表之上。

任何帮助都会很棒!

此函数将回应头像:bp_member_avatar()。 因此它会在您的代码运行时出现,而不是将其附加到 $content。 请尝试使用 bp_get_member_avatar()