如何以编程方式更新BuddyPress xprofile字段?

时间:2013-01-17 作者:Debiprasad

我使用更新用户信息wp_update_user 作用我还需要更新表wp_bp_xprofile_data. 是否有任何功能,我可以在其中更新数据wp_bp_xprofile_data 桌子

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);

}

结束

相关推荐

wp_list_tables bulk actions

如何在扩展的WP\\U List\\U表中触发批量操作。我一直在将以下批量操作添加到may table的选择框中,但在Apply上不会发生任何事情下面是我如何添加批量操作的function get_bulk_actions() { $actions = array( \'delete\' => \'Delete\', \'parsing\' => \'Parsen\' );