ALINTI:

Functions.php dosyasına aşağıdaki kodu ekleyin.

function new_city_methods ( $ citymethods ) {
$ citymethods [ 'text' ] = 'Şehir' ;
$ citymethods döndür;
}
add_filter ( 'user_contactmethods' , 'new_city_methods' , 10 , 1 ) ;
function new_custom_user_table ( $ column_city ) {
$ column_city [ 'text' ] = 'Şehir' ;
$ column_city döndür;
}
add_filter ( 'manage_users_columns' , 'new_custom_user_table' ) ;
function new_custom_user_table_row ( $ değer, $ sütun_city , $ kullanıcı_kimliği ) {
switch ( $ column_city ) {
case 'text' :
Dönüş get_the_author_meta ( 'text' , $ user_id ) ;
varsayılan:
}
$ değer döndür;
}
add_filter ( 'manage_users_custom_column' , 'new_custom_user_table_row' , 10 , 3 ) ;


Telefon numarası, meslek, Posta kodu, adres, sosyal bilgiler vb. Gibi kullanıcı iletişim bilgilerine başka özel sütunlar ekleyebilirsiniz.

Kaynak