Storing Checkbox group output in WP Usermeta?
-
Hi there
I am adding a custom field in user profile fields.
Checkbox group called “Skils”.
The user can select one or more values from (Java, JavaScript, PHP, MySQL).How will I save these in wp usermeta? What will be the right code?
foreach($_POST['skills'] as $value) { update_user_meta( $user_id, 'skills', $value ); }Thanks.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Storing Checkbox group output in WP Usermeta?’ is closed to new replies.