我有一个名为“Bio”的Buddypress个人资料字段,我想在帖子页脚中显示它的内容,以显示作者的简历。
我试过
<?php bp_member_profile_data('field=Bio');?>
和
<?php echo xprofile_get_field_data( 'Bio' );?>,
但我还是很迷茫。
我该怎么做?
答案 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' )); ?>