我有一个包含用户头像的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>
虚拟形象在那里,但在实际列表之上。
任何帮助都会很棒!
答案 0 :(得分:1)
此功能将回显头像:bp_member_avatar()
。
因此,它会在您的代码运行时显示,而不是将其附加到$content
。
请尝试使用bp_get_member_avatar()
。