Markup

The markup lets you add a HTML in Theme Customizer Sizebar.

Markup

Parameters

Here are the parameters in adding markup.

id
string | required

a unique slug-like string to use as an id.

section
string | required

the section where the field will be displayed.

priority
integer | optional

determines the order of fields in section.

html
string | required

html code to be display in Theme Customizer Sidebar.

Note: add html markup in here.

Example


Yano::field( 'markup', [
   'id'       => 'markup1',
   'section'  => 'section_1',
   'priority' => 1,
   'html'     => 'HTML Markup in here...'
] );