Support

Account

Home Forums ACF PRO get all fields by group id Reply To: get all fields by group id

  • Just came across this and got all the fields for a specific field group using the below.

    if(function_exists('acf_get_field_groups')) {
                    $fieldGroup = acf_get_field_group(11);
                    $fields = acf_get_fields_by_id(11);
                }