WordPress ユーザープロフィールの名前欄を姓名順に並び替える

極細かい話ですが、ユーザープロフィールページの、名前の並び順は日本語では普通 姓 名 の順番なので、「おかしい」とこだわる人もいるようで、

のように、順番をCSSで入れ替えてみたいと思います。

add_action( 'admin_print_scripts-profile.php', 'my_custom_order' );

function my_custom_order(){
?>
<style>
	#your-profile table:nth-of-type(2){
		position:relative;
		height:310px;
	}
	#your-profile table:nth-of-type(2) tr{ position:absolute; }
	#your-profile table:nth-of-type(2) .user-user-login-wrap { top:0px; }
	#your-profile table:nth-of-type(2) .user-first-name-wrap { top:124px; } 
	#your-profile table:nth-of-type(2) .user-last-name-wrap { top:62px; }
	#your-profile table:nth-of-type(2) .user-nickname-wrap{ top:186px } 
	#your-profile table:nth-of-type(2) .user-display-name-wrap{ top:248px; } 
</style>
<?php
}

新着記事

コメントは受け付けていません。