Custom User Field in Wordpress (Hidden from User)

2019-08-12 03:07发布

问题:

I'm trying to find a way to add a custom field for users in Wordpress, but I don't want this field to be seen by the users. It'll be entered and viewed by an admin, but it shouldn't be shown on the registration page or their profile page.

Is there an easy way to do this? If so, may I be pointed in the right direction?

回答1:

you can use the add_user_meta() function to add any metadata you would like .

TO display it only to admins ,you should use one of wordpres´s conditional tags , in addition to a simple user level check.



标签: php wordpress