Slider field type for CMB2.
You can install slider field as a Wordpress plugin
- Download plugin
- Place in
wp-content/plugins
directory - Active in Wordpress plugin section
own_slider
as a field type.
array(
'name' => 'Slider Field',
'desc' => 'Set your value.',
'id' => $prefix . 'slider',
'type' => 'own_slider',
'min' => '0',
'max' => '200',
'step' => '5',
'default' => '0', // start value
'value_label' => 'Value:',
),
- Added support for repeatable group ( #3 ).
- Added
step
attribute by jondcampbell, ( #5 ).