标签: buddypress
如何在buddyPress中获取当前已连接用户的字段的值?
ex:如何打印:
My gender is : {gender}
答案 0 :(得分:1)
获取当前用户ID:get_current_user_id() 然后使用xprofile_get_field_data
get_current_user_id()
xprofile_get_field_data
我的性别是:<?php echo xprofile_get_field_data('gender', get_current_user_id(), 'comma'); ?>
<?php echo xprofile_get_field_data('gender', get_current_user_id(), 'comma'); ?>
http://hookr.io/functions/xprofile_get_field_data/