Skip to:
Content
Pages
Categories
Search
Top
Bottom

How Programitically Add a Buddy Press Member With Custom Fileds?

  • @bloggingandwb

    Participant

    How Programitically Add a Buddy Press Member With Custom Fileds?

    I ma looking for something like wp_insert_user().

Viewing 1 replies (of 1 total)
  • @modemlooper

    Moderator

    BuddyPress users are the same as WordPress so you can create a user using https://codex.wordpress.org/Function_Reference/wp_create_user

    To set profile fields data:

    xprofile_set_field_data( $field, $user_id, $value, $is_required = false )
    
    $fields = field id
    
    $user_id = current login user id
    
    $value = inserted value
    
    $is_required = boolean
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar