WordPress edit_user_profile_update update secondary role

I am trying to save secondary role field in user-edit.php which is independent of WP’s main roles. I had no problem with saving other custom fields that are unique but for roles (wp_capabilities), it looks like it first saves my roles (I set sleep(10) to check in database in the process) and at the end of request, WP saves main role field which overwrites my previously saved role.

Is there any way to order events somehow so my function executes at the very end of request?

Read More

Here’s what I’ve got so far:

Hooks:

<?php
add_action( 'edit_user_profile',        array( $this, 'test_profile_form'));
add_action( 'edit_user_profile_update', array( $this, 'test_save_profile_form' ));

Callbacks:

function hook_save_profile_form($user_id) {
        if(!current_user_can("edit_user",$user_id)) {
            return false;
        }
        $user = new WP_User($user_id);
        $user->add_role($_POST['secondary-role']);
        //debug
        sleep(10);
}

Related posts

4 comments

  1. I have finally found solution and the right hook for this: profile_update is called at the end of wp_insert_user in user.php which is called from edit_user.

    wp_insert_user ending:

    if ( $update )
            do_action('profile_update', $user_id, $old_user_data);
        else
            do_action('user_register', $user_id);
    
        return $user_id;
    
  2. I was using the personal_options_update and edit_user_profile_update hooks, but the database information was being overwritten. Those hooks work when editing the current user, but when an administrator edits another user’s profile, the information is not persisted. I switched to using the profile_update hook and the updates were persisted when editing any user, so this appears to be the best hook to use in cases where you want to edit all user profiles and not just the current user.

Comments are closed.