Support

Account

Home Forums General Issues make ACF-fields seo friendly Reply To: make ACF-fields seo friendly

  • You can call acf_get_fields() using the field_group key, for example: $fields = get_fields('group_5570c274a5741');

    This will return a multidimensional array. You could then look through the array to find all fields of a specific type.

    I doubt this would cause any performance issues. This information is cached by ACF so that they will not be re-queried.