web-dev-qa-db-ja.com

BuddyPressのxprofileフィールドをプログラムで更新する方法

wp_update_user関数を使ってユーザー情報を更新します。テーブルwp_bp_xprofile_dataも更新する必要があります。 wp_bp_xprofile_dataテーブルのデータを更新できる機能はありますか?

2
Debiprasad

これが「住所」という名前のフィールドを更新する方法です。

function updateAddress() {

    global $current_user;
    get_currentuserinfo();

    $newAddress = '123 New Street';

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

}
11
Laurie Nicholas