update usermeta with bp_xprofile_data
-
I need to update usermeta with the field value of xprofile field. Here is my code in functions.php:
function synchronize_wp_usermeta($xprofile) {
global $bp, $wpdb;
$user_ID = $xprofile->user_id;
$firstname = xprofile_get_field_data(‘Voornaam’, $user_ID);
update_user_meta( $user_ID, ‘first_name’, $firstname );
}
add_action( ‘xprofile_data_after_save’, ‘synchronize_wp_usermeta’);But I cannot get firstname from xprofile_get_field_data(‘Voornaam’, $user_ID);
any help please.
- The topic ‘update usermeta with bp_xprofile_data’ is closed to new replies.