Markup
The Markup controller allows users to add a HTML markup in Theme Customizer Sidebar.

Demonstration
Handy::control( 'markup', [
'id' => 'markup_id',
'section' => 'layout_section',
'priority' => 1,
'html' => 'Markup'
]);
Parameters
| Name | Description |
|---|---|
| id |
The unique slug like string used as an ID and also as an index name in storing data in a database. |
| section |
The ID of the section in which the control will be displayed. |
| html |
The markup's html content or component. |
| priority |
The order of control appears in the section. Default |
| active_callback |
A callback function that determines the visibility of a control, whether to show or hide depending on a condition. For further details, read active_callback. Default empty. |