Home › Forums › General Issues › Whoops. I lost my JSON file (I only have functions.php code) › Reply To: Whoops. I lost my JSON file (I only have functions.php code)
At the point where your field group is create in PHP and before you call the acf function to register it, json encode it and save it to a file.
$path = dirname(__FILE__).'/'.$group['key'].'.json';
$json = acf_json_encode($group);
$handle = fopen($path);
fwrite($handle, $json, strlen($json));
fclose($handle);
that will save the file in the same folder on the server as the script you put this in. Then import the field group from that file.
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.