开发者

Alter Users Table in Wordpress

开发者 https://www.devze.com 2023-04-12 13:23 出处:网络
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?

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消