如何在post循环中显示Buddypress配置文件字段内容

时间:2011-05-18 22:24:23

标签: wordpress buddypress

我有一个名为“Bio”的Buddypress个人资料字段,我想在帖子页脚中显示它的内容,以显示作者的简历。

我试过

<?php bp_member_profile_data('field=Bio');?>

<?php echo xprofile_get_field_data( 'Bio' );?>, 

但我还是很迷茫。

我该怎么做?

2 个答案:

答案 0 :(得分:4)

当然,您首先要获取当前用户ID:

$current_user = wp_get_current_user();
$current_user_id = $current_user->ID;

然后,通过Buddypress 1.5证实:

<?php bp_profile_field_data( array('user_id'=>$current_user_id,'field'=>'bio' )); ?>

答案 1 :(得分:4)

对我来说,这在作者框中有效:

<?php bp_profile_field_data( array('user_id'=>get_the_author_meta( 'ID' ),'field'=>'NAME_OF_THE_FIELD' )); ?>