如何获得当前用户的buddypress字段?

时间:2018-08-18 23:45:12

标签: buddypress

如何在buddyPress中获取当前已连接用户的字段的值?

ex:如何打印:

My gender is : {gender}

1 个答案:

答案 0 :(得分:1)

获取当前用户ID:get_current_user_id() 然后使用xprofile_get_field_data

我的性别是:<?php echo xprofile_get_field_data('gender', get_current_user_id(), 'comma'); ?>

http://hookr.io/functions/xprofile_get_field_data/