Support

Account

Home Forums General Issues Get the entire ACF config outside post Reply To: Get the entire ACF config outside post

  • 
    $group = acf_get_field_group($group_key);
    $group['fields'] = acf_get_fields($group_key);
    

    would do this
    if you want it as JSON then

    
    $json = json_encode($group);