概要説明
ユーザー情報にカスタムフィールド機能を使って任意の項目を追加させるカスタマイズ。スタッフページなどを既存のユーザー機能をカスタマイズさせる際に使用します。
コード – プロフィール項目を追加
functions.php
/*---------------------------------------------------- ユーザー編集ページに任意の項目を追加 ----------------------------------------------------*/ if ( !function_exists( 'add_custom_user_profile' ) ){ function add_custom_user_profile( $user ) { echo '<h2>追加情報</h2>'; echo '<table class="form-table">'; echo '<tr>'; echo '<th><label for="branch">所属店舗</label></th>'; echo '<td><input type="text" name="branch" id="branch" value="'.esc_attr( get_the_author_meta( 'branch', $user->ID )).'" class="regular-text" /></td>'; echo '</tr>'; echo '</table>'; } function save_custom_user_profile( $user_id ) { if ( !current_user_can( 'edit_user', $user_id ) ) { return FALSE; } update_user_meta( $user_id, 'branch', $_POST['branch'] ); } add_action( 'show_user_profile', 'add_custom_user_profile' ); add_action( 'edit_user_profile', 'add_custom_user_profile' ); add_action( 'personal_options_update', 'save_custom_user_profile' ); add_action( 'edit_user_profile_update', 'save_custom_user_profile' ); }
追加した情報の表示
<?php esc_attr( get_the_author_meta( 'branch', $user->ID )); ?>
とすることで追加情報を表示させることも可能です