Custom Registration fields – database wp_usermeta and wp_postmeta
-
Hi,
Is it possible to insert the custom registrations fields metadata into another database table, instead of only insert into wp_usermeta? It would be great if you could insert into both wp_usermeta and wp_postmeta table.
Why?
I’m using another plugin Birchpress and it loads the “user” info from custom fields from wp_postmeta table.
Like:
INSERT INTO
wp_postmeta(
meta_id,
post_id,
meta_key,
meta_value) VALUES (2866, 672, '_birs_client_name_first', 'Carina');
Now it only inserts into wp_usermeta like:
INSERT INTO
wp_usermeta(
umeta_id,
user_id,
meta_key,
meta_value) VALUES (809, 53, 'first_name', 'Carina');
Regards,
Eriikoo
- The topic ‘Custom Registration fields – database wp_usermeta and wp_postmeta’ is closed to new replies.