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 displayed 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:
Be aware, changing this isn’t a great idea as it may break next time you upgrade WordPress.