我使用更新用户信息wp_update_user
作用我还需要更新表wp_bp_xprofile_data
. 是否有任何功能,我可以在其中更新数据wp_bp_xprofile_data
桌子
如何以编程方式更新BuddyPress xprofile字段?
1 个回复
最合适的回答,由SO网友:Laurie Nicholas 整理而成
这是我更新名为“Address”的字段的方式:
function updateAddress() {
global $current_user;
get_currentuserinfo();
$newAddress = \'123 New Street\';
xprofile_set_field_data(\'Address\', $current_user->id, $newAddress);
}
结束