web-dev-qa-db-ja.com

ユーザープロファイルページにカスタムフォームフィールドを追加する方法

ユーザープロファイルページには、以下のフィールドがあります。

Username
ファーストネーム
苗字
ニックネーム表示名連絡先情報EメールWebサイトAIM Yahoo IM
Jabber/Google Talk

このセクションにさらに多くのフィールドを追加する方法電話番号、住所などのフィールド。

29
rsman

'show_user_profile''edit_user_profile''personal_options_update'および'edit_user_profile_update'フックを使用する必要があります。

電話番号を追加するコードを次に示します

add_action( 'show_user_profile', 'yoursite_extra_user_profile_fields' );
add_action( 'edit_user_profile', 'yoursite_extra_user_profile_fields' );
function yoursite_extra_user_profile_fields( $user ) {
?>
  <h3><?php _e("Extra profile information", "blank"); ?></h3>
  <table class="form-table">
    <tr>
      <th><label for="phone"><?php _e("Phone"); ?></label></th>
      <td>
        <input type="text" name="phone" id="phone" class="regular-text" 
            value="<?php echo esc_attr( get_the_author_meta( 'phone', $user->ID ) ); ?>" /><br />
        <span class="description"><?php _e("Please enter your phone."); ?></span>
    </td>
    </tr>
  </table>
<?php
}

add_action( 'personal_options_update', 'yoursite_save_extra_user_profile_fields' );
add_action( 'edit_user_profile_update', 'yoursite_save_extra_user_profile_fields' );
function yoursite_save_extra_user_profile_fields( $user_id ) {
  $saved = false;
  if ( current_user_can( 'edit_user', $user_id ) ) {
    update_user_meta( $user_id, 'phone', $_POST['phone'] );
    $saved = true;
  }
  return true;
}

このコードは、ユーザー画面に次のようなフィールドを追加します。

また、このテーマに関する役立つと思われるいくつかのブログ投稿もあります。

または、自分でロールバックしたくない場合は、次のような機能を追加するプラグインがあります(他にもあると確信していますが):

37
MikeSchinkel
// remove aim, Jabber, yim 
function hide_profile_fields( $contactmethods ) {
    unset($contactmethods['aim']);
    unset($contactmethods['Jabber']);
    unset($contactmethods['yim']);
    return $contactmethods;
}

// add anything else
function my_new_contactmethods( $contactmethods ) {
    //add Birthday
    $contactmethods['birthday'] = 'Birthday';
    //add Address
    $contactmethods['address'] = 'Address';
    //add City
    $contactmethods['city'] = 'City';
    //add State
    $contactmethods['state'] = 'State';
    //add Postcode
    $contactmethods['postcode'] = 'Postcode';
    //add Phone
    $contactmethods['phone'] = 'Phone';
    //add Mobilphone
    $contactmethods['mphone'] = 'Mobilphone';

    return $contactmethods;
}
add_filter('user_contactmethods','my_new_contactmethods',10,1);
add_filter('user_contactmethods','hide_profile_fields',10,1);

お役に立てれば。

ソース: WPBeginner

8
Sven Schneider