Support

Account

Home Forums ACF PRO Get list of ACF fields

Helping

Get list of ACF fields

  • Is there a way of getting the list of ACF fields associated with a post type?

  • You can get a list of acf fields groups associated with a specific post. And then you can get a list of fields in each group

    
    // this has not been tested
    $field_groups = acf_get_fields(array('post_id' => $post_id));
    foreach ($groups as $group) {
      $fields_for_group = acf_get_fields($group['key']);
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.