Skip to content

Instantly share code, notes, and snippets.

@raazon
Created October 22, 2018 10:31
Show Gist options
  • Save raazon/b3fe09b38f2b02aa972c24a89ec0cd8a to your computer and use it in GitHub Desktop.
Save raazon/b3fe09b38f2b02aa972c24a89ec0cd8a to your computer and use it in GitHub Desktop.
Extra profile field as select box
<?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">Gender</label></th>
<td>
<select name="gender" id="gender" >
<option value="Male" <?php selected( 'Male', get_the_author_meta( 'gender', $user->ID ) ); ?>>Male</option>
<option value="Female" <?php selected( 'Female', get_the_author_meta( 'gender', $user->ID ) ); ?>>Female</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'] );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment