Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,28 @@ The attachment id for the selected video.
'label' => __( 'Video Field', 'fl-builder' )
),
```
### Compound Fields
Compound fields are fields that are made up of more than one field. The compound fields are:
- border
- box shadow
- dimension
- link
- typography

Because they are compound fields, executing certain things, like setting a default, is a little different than a normal field.

#### Examples
```php
'default' => array(
'style' => 'solid',
'color' => 'f2f2f2',
'width' => array(
'top' => '1',
'bottom' => '1',
'left' => '1',
'right' => '1',
),
```

### Field Modifiers

Expand Down