I am trying to pull the name and email from the database and show on the front end of my website. I tried many scripts and looked on the flamingo forum as well. But couldnt find a solution.
All the data is saved in one of the
. How do I differentiate flemingo postmeta as there are multiple
s? and how do I pull in just flemingo
and
?
Here is a database dump
Thanks heaps in advance.
<a href="https://wordpress.org/plugins/flamingo/" rel="nofollow noreferrer">https://wordpress.org/plugins/flamingo/</a>
All the data is saved in one of the
Code:
wp_postmeta
Code:
postmeta
Code:
_field_fullname
Code:
_from_email
Here is a database dump
Code:
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5874, 1438, '_field_fullname', 'Jason'),
(5875, 1438, '_field_phone', '04112343'),
(5876, 1438, '_field_email', '[email protected]'),
Thanks heaps in advance.
<a href="https://wordpress.org/plugins/flamingo/" rel="nofollow noreferrer">https://wordpress.org/plugins/flamingo/</a>