Answer the question
In order to leave comments, you need to log in
How to add radio button field to user profile?
There is a site on wordpress, I want to add the ability to select gender (male / female) to the user profile using the radiobutton radiobutton. I prescribe a filter in the functions.php file
add_filter('user_contactmethods', 'my_user_gender');
function my_user_gender($user_contactmethods){
$user_contactmethods['gender'] = 'Пол';
return $user_contactmethods;
}
Answer the question
In order to leave comments, you need to log in
// дополнительные данные на странице профиля
add_action('show_user_profile', 'my_profile_new_fields_add');
add_action('edit_user_profile', 'my_profile_new_fields_add');
add_action('personal_options_update', 'my_profile_new_fields_update');
add_action('edit_user_profile_update', 'my_profile_new_fields_update');
function my_profile_new_fields_add($user){
?>
<h3>Дополнительные данные</h3>
<table class="form-table">
<tr>
<th><label for="gender">Пол</label></th>
<td>
<p><input type="radio" name="gender" value="мужской" <?php checked('мужской', get_user_meta($user->ID, 'gender', true)); ?>> мужской</p>
<p><input type="radio" name="gender" value="женский" <?php checked('женский', get_user_meta($user->ID, 'gender', true)); ?>> женский</p>
</td>
</tr>
</table>
<?php
}
// обновление
function my_profile_new_fields_update($user_id){
if ( !current_user_can( 'edit_user', $user_id ) )
return false;
update_usermeta( $user_id, 'gender', $_POST['gender'] );
}
<?php
add_action( 'show_user_profile', 'show_extra_profile_fields' );
add_action( 'edit_user_profile', 'show_extra_profile_fields' );
function show_extra_profile_fields( $user ) { ?>
<h3>Extra profile information</h3>
<table class="form-table">
<tr>
<th><label for="gender">Пол</label></th>
<td>
<select name="gender" id="gender" >
<option value="Male" <?php selected( 'Male', get_the_author_meta( 'gender', $user->ID ) ); ?>>Мужчина</option>
<option value="Female" <?php selected( 'Female', get_the_author_meta( 'gender', $user->ID ) ); ?>>Женщина</option>
</select>
</td>
</tr>
</table>
<?php }
add_action( 'personal_options_update', 'save_extra_profile_fields' );
add_action( 'edit_user_profile_update', 'save_extra_profile_fields' );
function save_extra_profile_fields( $user_id ) {
if ( !current_user_can( 'edit_user', $user_id ) )
return false;
update_usermeta( $user_id, 'gender', $_POST['gender'] );
}
?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question