dimension

dimension control example

The dimension control allows you create an input where users can enter any valid dimension CSS value. It automatically detects invalid values and notifies the user when that happens.

Example

Kirki::add_field( 'theme_config_id', [
	'type'        => 'dimension',
	'settings'    => 'dimension_setting',
	'label'       => esc_html__( 'Dimension Control', 'kirki' ),
	'description' => esc_html__( 'Description Here.', 'kirki' ),
	'section'     => 'section_id',
	'default'     => '10px',
] );

Usage

<div style="font-size: <?php echo get_theme_mod( 'dimension_setting', '1em' ); ?>">
	<p>The font-size of this paragraph is controlled by "dimension_setting".</p>
</div>

Last updated on: May 9th, 2020

Scroll to Top

Download

Subscribe & be the first to be informed about
new features & updates!