acf/get_field_types

acf/get_field_types

Hook Type: filter

See hook in core

Displaying hooks found in version: advanced-custom-fields.6.3.5

apply_filters('acf/get_field_types') is found 1 times:

  • /includes/fields.php line 364
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
            $groups[ $cat ][ $type->name ] = $type->label;
        }
     
        // filter
        $groups = apply_filters( 'acf/get_field_types', $groups );
     
        // return
        return $groups;
    }
     
    /**