Skip to content

Number Control

Elementor Core BasicNumber Control

Elementor number control displays a simple number input field with the option to limit the min and max values and define the step when changing the value.

The control is defined in Control_Number class which extends Base_Data_Control class.

When using this control, the type should be set to \Elementor\Controls_Manager::NUMBER constant.

Arguments

NameTypeDefaultDescription
typestringnumberThe type of the control.
labelstringThe label that appears above of the field.
descriptionstringThe description that appears below the field.
show_labelbooltrueWhether to display the label.
label_blockboolfalseWhether to display the label in a separate line.
separatorstringdefaultSet the position of the control separator. Available values are default, before and after. default will hide the separator, unless the control type has specific separator settings. before / after will position the separator before/after the control.
minstringThe minimum number (only affects the spinners, the user can still type a lower value).
maxstringThe maximum number (only affects the spinners, the user can still type a higher value).
stepstringThe intervals value that will be incremented or decremented when using the controls’ spinners. Default is empty, the value will be incremented by 1.
placeholderstringThe field placeholder that appears when the field has no values.
titlestringThe field title that appears on mouse hover.
defaultstringThe field default value.

Return Value

(string) The number field value.

Usage

php
<?php
class Elementor_Test_Widget extends \Elementor\Widget_Base {

	protected function register_controls(): void {

		$this->start_controls_section(
			'content_section',
			[
				'label' => esc_html__( 'Content', 'textdomain' ),
				'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
			]
		);

		$this->add_control(
			'price',
			[
				'label' => esc_html__( 'Price', 'textdomain' ),
				'type' => \Elementor\Controls_Manager::NUMBER,
				'min' => 5,
				'max' => 100,
				'step' => 5,
				'default' => 10,
			]
		);

		$this->end_controls_section();

	}

	protected function render(): void {
		$settings = $this->get_settings_for_display();

		if ( empty( $settings['price'] ) ) {
			return;
		}
		?>
		<span class="price">
			<?php echo $settings['price']; ?>
		</span>
		<?php
	}

	protected function content_template(): void {
		?>
		<#
		if ( '' === settings.price ) {
			return;
		}
		#>
		<span class="price">
			{{{ settings.price }}}
		</span>
		<?php
	}

}