Heading Fields
Arguments
Name | Type | Default | Description |
---|
type | string | heading | Type of the field |
content | string | | The content of the field |
Heading Field Example
array(
'type' => 'heading',
'content' => 'This is a heading field',
),
Subheading Fields
Arguments
Name | Type | Default | Description |
---|
type | string | subheading | Type of the field |
content | string | | The content of the field |
Heading Field Example
array(
'type' => 'subheading',
'content' => 'This is a subheading field',
),
Submessage Fields
Arguments
Name | Type | Default | Description |
---|
type | string | submessage | Type of the field |
style | string | normal | The style of the field (normal, success, info, warning, danger) |
content | strong | | The content of the field |
Submessage Field Example
array(
'type' => 'submessage',
'style' => 'success',
'content' => 'This is a successful submessage!',
),
Notice Fields
Arguments
Name | Type | Default | Description |
---|
type | string | notice | Type of the field |
style | string | normal | The style of the field (normal, success, info, warning, danger) |
content | strong | | The content of the field |
Notice Field Example
array(
'type' => 'notice',
'style' => 'warning',
'content' => 'This is a warning notice!',
),
Content Fields
Arguments
Name | Type | Default | Description |
---|
type | string | content | Type of the field |
content | string | | The content of the field |
Content Field Example
array(
'type' => 'content',
'content' => 'This is a content field that can take HTML code',
),
Was this article helpful to you?
Yes
No