2

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

我试过了

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

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

但我还是很迷茫。

我怎样才能做到这一点 ?

4

2 回答 2

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' )); ?>
于 2012-02-29T14:31:34.870 回答
4

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

<?php bp_profile_field_data( array('user_id'=>get_the_author_meta( 'ID' ),'field'=>'NAME_OF_THE_FIELD' )); ?>
于 2012-06-14T14:13:15.140 回答