我有一个名为“Bio”的 Buddypress 个人资料字段,我想在帖子页脚中显示它的内容,以显示作者的简历。
我试过了
<?php bp_member_profile_data('field=Bio');?>
和
<?php echo xprofile_get_field_data( 'Bio' );?>,
但我还是很迷茫。
我怎样才能做到这一点 ?
我有一个名为“Bio”的 Buddypress 个人资料字段,我想在帖子页脚中显示它的内容,以显示作者的简历。
我试过了
<?php bp_member_profile_data('field=Bio');?>
和
<?php echo xprofile_get_field_data( 'Bio' );?>,
但我还是很迷茫。
我怎样才能做到这一点 ?
当然,您首先要获取当前用户 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' )); ?>
对我来说,这在作者框中有效:
<?php bp_profile_field_data( array('user_id'=>get_the_author_meta( 'ID' ),'field'=>'NAME_OF_THE_FIELD' )); ?>