web-dev-qa-db-ja.com

ユーザープロファイルにフィールドを追加する方法を教えてください。たとえば、国、年齢など

私はコンピュータやコードなどがあまり得意ではありません。登録フォームを面倒にするプラグインを使用し、そのフォームに国、年齢層、性別などを追加しました。登録者をwordpressユーザーのthingyに追加するオプションをクリックします。しかし、試してみると、バックエンドのUsersセクションに表示されるのはユーザー名と電子メールだけです。他のフィールドをusersセクションに表示する方法はありますか?

統計的な用途を示すためにそれらが必要です。

15
Chloe Aus

show_user_profileedit_user_profilepersonal_options_update、およびedit_user_profile_updateフックを使用する必要があります。

ユーザーセクションに追加のフィールドを追加するには、次のコードを使用できます。

ユーザーセクションの編集に追加フィールドを追加するためのコード:

add_action( 'show_user_profile', 'extra_user_profile_fields' );
add_action( 'edit_user_profile', 'extra_user_profile_fields' );

function extra_user_profile_fields( $user ) { ?>
    <h3><?php _e("Extra profile information", "blank"); ?></h3>

    <table class="form-table">
    <tr>
        <th><label for="address"><?php _e("Address"); ?></label></th>
        <td>
            <input type="text" name="address" id="address" value="<?php echo esc_attr( get_the_author_meta( 'address', $user->ID ) ); ?>" class="regular-text" /><br />
            <span class="description"><?php _e("Please enter your address."); ?></span>
        </td>
    </tr>
    <tr>
        <th><label for="city"><?php _e("City"); ?></label></th>
        <td>
            <input type="text" name="city" id="city" value="<?php echo esc_attr( get_the_author_meta( 'city', $user->ID ) ); ?>" class="regular-text" /><br />
            <span class="description"><?php _e("Please enter your city."); ?></span>
        </td>
    </tr>
    <tr>
    <th><label for="postalcode"><?php _e("Postal Code"); ?></label></th>
        <td>
            <input type="text" name="postalcode" id="postalcode" value="<?php echo esc_attr( get_the_author_meta( 'postalcode', $user->ID ) ); ?>" class="regular-text" /><br />
            <span class="description"><?php _e("Please enter your postal code."); ?></span>
        </td>
    </tr>
    </table>
<?php }

追加フィールドの詳細をデータベースに保存するためのコード

add_action( 'personal_options_update', 'save_extra_user_profile_fields' );
add_action( 'edit_user_profile_update', 'save_extra_user_profile_fields' );

function save_extra_user_profile_fields( $user_id ) {
    if ( !current_user_can( 'edit_user', $user_id ) ) { 
        return false; 
    }
    update_user_meta( $user_id, 'address', $_POST['address'] );
    update_user_meta( $user_id, 'city', $_POST['city'] );
    update_user_meta( $user_id, 'postalcode', $_POST['postalcode'] );
}

また、役に立つかもしれないいくつかのブログ記事が件名について利用可能です:

44
Arpita Hunka

Advanced Custom Fields プラグインを使用すると、コーディングなしでユーザープロファイルにフィールドを追加できます。

2
squarecandy

get_user_metaの代わりにget_the_author_metaを使用した方がよいでしょう。

function extra_user_profile_fields( $user ) {
    $meta = get_user_meta($user->ID, 'meta_key_name', false);
}
2
T.Todua