Adds Dual range slider to Advanced Custom Fields(ACF) plugin and supports some shortcodes for Email and URL links, Numbers with separators, and text.
As of April 2026, Plus Features for Advanced Custom Fields is a WordPress acf plugin with 10 active installations and a 0/5 rating0. It has been downloaded 2.3K+ times in total. Requires WordPress 5.0+ and PHP 7.0+. Available on WordPress.org since 2023. Last updated 1 year ago — may have compatibility concerns. Top alternative: Advanced Custom Fields (ACF®).
Plus Features for Advanced Custom Fields adds a Dual Range Slider field type to the advanced custom field plugin and some basic shortcodes for basic fields in the current post. The Dual Range Slider field type allows you to choose minimum and maximum values.
Get Dual range slider value code:
if ( function_exists( 'get_field' ) ) {
$min_max_array = get_field( 'dual_range_slider' );
if ( is_array( $min_max_array ) && array_key_exists( 'min', $min_max_array ) && array_key_exists( 'max', $min_max_array ) ) {
echo 'Min value is: ' . wp_kses( $min_max_array['min'] , array()) . '<br>';
echo 'Max value is: ' . wp_kses( $min_max_array['max'] , array());
}
}
Update Dual range slider PHP code:
if(function_exists( 'update_field' ) ){…| WordPress | 5.0+ requiredTested up to 6.5.8 |
| PHP | 7.0+ required |
New: Supports Page Link, Post Object, and Relationship Field types.
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.