您可以在Bp Profile循环中传递用户id,以获取所有字段及其值。
<?php
if ( bp_has_profile(array(\'user_id\' => 1)) ) :
while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
<ul id="profile-groups"> <?php
if ( bp_profile_group_has_fields() ) : ?>
<li>
<?php bp_the_profile_group_name() ?>
<ul id="profile-group-fields">
<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
<?php if ( bp_field_has_data() ) : ?>
<li>
<?php bp_the_profile_field_name() ?>
<?php bp_the_profile_field_value() ?>
</li>
<?php endif; ?>
<?php endwhile; ?>
</ul>
<li>
<?php endif; ?>
</ul>
<?php endwhile; ?>
<?php else: ?>
<div id="message" class="info">
<p>This user does not have a profile.</p>
</div>
<?php endif;?>
这将为您提供组名和所有字段名以及值