You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I add a value in the "Title" field inside the "Profile Fields" in the Meta Box from a front end form? I tried this but writes in the meta box and also the custom field:
Hi:
How can I add a value in the "Title" field inside the "Profile Fields" in the Meta Box from a front end form? I tried this but writes in the meta box and also the custom field:
add_post_meta($pid, 'profile_title', $metabox, true);
And the same for reading from the front end, this reads the custom field but not the meta box:
echo get_post_meta($post->ID, 'profile_title', true);
Thank you!
Daniel.
The text was updated successfully, but these errors were encountered: