Quantcast
Viewing latest article 4
Browse Latest Browse All 10

wordpress:How to update BuddyPress xprofile fields programmatically? [closed]

I update user info using wp_update_user function. I also need to update the table wp_bp_xprofile_data. Is there any function, where I can update data on wp_bp_xprofile_data table?

Answers

This is how I would update a field named ‘Address’:

1
2
3
4
5
6
7
8
9
10
function updateAddress() {

    global $current_user;
    get_currentuserinfo();

    $newAddress = '123 New Street';

    xprofile_set_field_data('Address', $current_user->id,  $newAddress);

}

Source


Viewing latest article 4
Browse Latest Browse All 10

Trending Articles