is this possible in a dropdown field using separate values ?
foreach ( $users1 as $user ) {
$values['options'][] = array(
'label' => $user->display_name,
'value' => $user->user_email,
'jobdescription => $user->job_description
);
}
job_description was a user meta added to user registration.
In case this is not possible, how i can populate a dropdown field with more than 2 fields.
i want to populate the droddown field with
1.Display name
2. User email
3. Job Description
4. Mobile number
or more fields.
any work around that i can use to.. thanks in advance