0
나는 사용자 아바타가 포함 된 BuddyPress 멤버 루프가 있습니다. 아바타가 나타나지만 외부에 html 요소가 있습니다. BuddyPress 아바타가 지정된 콘텐츠 외부에 나타납니다.
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>
함께 보여주는 그리고 아바타가 있지만, 실제 목록 위.
어떤 도움도 좋을 것!
감사합니다. 이것은 효과가있다! – pixeloft