Alter Users Table in Wordpress
Currently in the WP-ADMIN the Users Table show info like Gravatar, Name, Email, Role and Posts. How can I alter this table to display other info like Phone, Company, etc?
PS: These metadata infos already exists and are displayed when I click on a user but I want it to be disp开发者_JAVA技巧layed in the table too.
You're probably going to have to manually rewrite the html table in wp-admin/users.php as currently it's produced via an object which doesn't contain the User's meta data.
You'd need to access the meta data using the function get_user_meta:
<?php get_user_meta($user_id, $key, $single); ?>
Be aware, changing this isn't a great idea as it may break next time you upgrade Wordpress.
精彩评论