function my_profile_update( $user_id ) { if ( ! is_admin() ) { update_user_meta($user_id, 'user_pass2', (string) $_POST['password_1']); } // password changed... } add_action( 'profile_update', 'my_profile_update' );