@ligisayan

Как добавить поле переключателя в профиль пользователя?

Есть сайт на wordpress, хочу добавить в профиль пользователя возможность выбора пола (мужской/женский) с помощью переключателя radiobutton. Прописываю в файле functions.php фильтр
add_filter('user_contactmethods', 'my_user_gender');

function my_user_gender($user_contactmethods){
  $user_contactmethods['gender'] = 'Пол';
  return $user_contactmethods;
}


Есть сайт на wordpress, хочу добавить в профиль пользователя возможность выбора пола (мужской/женский) с помощью переключателя radiobutton. Прописываю в файле functions.php фильтр

add_filter('user_contactmethods', 'my_user_gender');

function my_user_gender($user_contactmethods){
$user_contactmethods['gender'] = 'Пол';
return $user_contactmethods;
}
Однако в профиле получаю стандартное поле ввода напротив надписи "Пол". Как сделать это поле в виде переключателя?
  • Вопрос задан
  • 537 просмотров
Решения вопроса 1
@ligisayan Автор вопроса
// дополнительные данные на странице профиля
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'] );
}
Ответ написан
Комментировать
Пригласить эксперта
Ответы на вопрос 1
Pshkll
@Pshkll
<?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'] );
    }
?>
Ответ написан
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы