wp_update_user
関数を使ってユーザー情報を更新します。テーブルwp_bp_xprofile_data
も更新する必要があります。 wp_bp_xprofile_data
テーブルのデータを更新できる機能はありますか?
これが「住所」という名前のフィールドを更新する方法です。
function updateAddress() {
global $current_user;
get_currentuserinfo();
$newAddress = '123 New Street';
xprofile_set_field_data('Address', $current_user->id, $newAddress);
}