What’s the most efficient database method to add and query usermeta?
What’s the most efficient way – concerning the database – to add and query extra usermeta fields to a profile?
What’s the most efficient way – concerning the database – to add and query extra usermeta fields to a profile?
I created a field (not acf) in the user profile. The field is called “genere”, and I have another field in the post created with ACF called the same “genere”, but it is invoked in my function by the $field_key
.
Is it possible to show the Biographical Info textfield while creating a new user?
I know it’s possible to add user bio by editing a user AFTER it has been created. But I would like to do this while creating the user.
Just discovered that the get_the_author_meta( 'birth_date', 0 )
returns the administrator birthdate. The same happens with other $field
parameters for $user_id = 0
. Is this an expected behavior for this function?
I use a WP theme with a custom registration form. I want to add two fields to it (for phone number and company name). What to add to the php file of the form and what to the function file of theme to validate the fields and save the values in the database?
I have a functioning WordPress site, with two users (an Administrator and an Editor). I can log in to the WP back-end fine with either user. I can create pages, etc. But when I look at phpMyAdmin, the database does not have a users table. However, it does has the usermeta table, displaying details for both the Administrator user and the Editor user.
For each user the following is to be saved:
Basically I’m looking for something like this:
I am trying to display the user_registered date from get_user_meta but it always displays as empty. If I try another field I do get a value so not sure why I don’t see anything for the date. If I check the database there is definitely a date.
I am developing a plugin to extend BuddyBoss platform. Specifically I am sync’ing BB user info with WordPress User meta data.