%PDF- %PDF-
Direktori : /var/www/html/qendrasteps/wp-content/themes/tm-heli/core/kirki/docs/docs/controls/ |
Current File : /var/www/html/qendrasteps/wp-content/themes/tm-heli/core/kirki/docs/docs/controls/dimension.md |
--- layout: default title: The "dimension" control slug: dimension subtitle: Learn how to create controls using Kirki mainMaxWidth: 50rem; bodyClasses: control page returns: string heroButtons: - url: ../controls class: white button round border-only icon: fa fa-arrow-circle-o-left label: Back to Controls --- 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: ```php Kirki::add_field( 'theme_config_id', array( 'type' => 'dimension', 'settings' => 'dimension_setting', 'label' => esc_attr__( 'Dimension Control', 'textdomain' ), 'description' => esc_attr__( 'Description Here.', 'textdomain' ), 'section' => 'section_id', 'default' => '10px', ) ); ``` <img src="https://raw.githubusercontent.com/aristath/kirki/master/docs/assets/images/dimension.gif" alt="dimension control example" style="max-width:300px;"> ### Usage ```php <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> ```