Home › Forums › Backend Issues (wp-admin) › Get google maps field data without db markup? › Reply To: Get google maps field data without db markup?
The value of the map field is stored as an array, which is serialzed for storage in the database.
I don’t know how your export works but converting to the old value might look something like
// $value holds value from the DB
$value = maybe_unserialize($value);
$value = $value['address'].'|'.$value['lat'].','.$value['lng'];
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.