사용자 편집의 컬럼들도 중요도 순서로 바꾸거나, 회원 등급(역할)에 따라 다르게 보이고 싶은데, 이것을 수정하는 방법은 무엇인가요?
안녕하세요~^^
워드프레스의 사용자 편집 페이지에서 기존에 있는 컬럼 순서 변경은
워드프레스에서 지원하지 않는 듯합니다.
FTP로 접속해서 /wp-admin/user-edit.php 파일에
아래의 코드가 사용자 편집 페이지에서 사용자명(user_login)을 표시하는 코드입니다.
<tr class="user-user-login-wrap">
<th><label for="user_login"><?php _e('Username'); ?></label></th>
<td><input type="text" name="user_login" id="user_login" value="<?php echo esc_attr($profileuser->user_login); ?>" disabled="disabled" class="regular-text" /> <span class="description"><?php _e('Usernames cannot be changed.'); ?></span></td>
</tr>
만약 따로 컬럼을 추가하셨다면
show_user_profile 액션과 edit_user_profile을 사용해서 커스텀하실 수 있습니다.
아래의 링크들을 참고해보시겠어요?
https://codex.wordpress.org/Plugin_API/Action_Reference/show_user_profile
https://codex.wordpress.org/Plugin_API/Action_Reference/edit_user_profile
고맙습니다.