-
-
Save mmarj/58706c6b8498901059d6aa27d211a248 to your computer and use it in GitHub Desktop.
Wordpress: Set display name with 'first name'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Sets the user's display name (always) to first name last name, when it's available ************************************** | |
| ** http://stackoverflow.com/questions/9326315/wordpress-change-default-display-name-publicy-as-for-all-existing-users *** */ | |
| /* !아이디 대신 이름으로 나타내기 ********************************************************************************************* */ | |
| /* Sets the user's display name (always) to first name last name, when it's avail. */ | |
| add_action ('admin_head','make_display_name_f_name_last_name'); | |
| function make_display_name_f_name_last_name(){ | |
| $users = get_users(array('fields'=>'all')); | |
| foreach($users as $user){ | |
| $user = get_userdata($user->ID); | |
| $display_name = $user->first_name; | |
| if($display_name!=' ') wp_update_user( array ('ID' => $user->ID, 'display_name' => $display_name) ); | |
| else wp_update_user( array ('ID' => $user->ID, 'display_name' => $user->display_login) ); | |
| if($user->display_name == '') | |
| wp_update_user( array ('ID' => $user->ID, 'display_name' => $user->display_login) ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment